I currently have a dataframe like so:
category name1 name2 name3 name4
a 4 34 43 34
b 5 34 31 523
c 234 32 4 12
d 34 1 13 19
I am trying to plot bar plot subplots of each row in descending order.
I am currently plotting my subplots like this:
df.plot(kind='bar', subplots=True, layout=(2,10), figsize=(10,10))
How can I sort the current bar charts in descending order.
Let me know if you have any questions. Thanks