I have a Pandas dataframe as following:
number
Art 10000
Comics 235
Crafts 293
Dance 824
How can I plot a histogram that sort by values?
Demonstration:
*
* *
* *
* *
* *
* * * *
* * * *
-------------
x labels = Art/ Dance/ Crafts/ Comics
I have tried pandas.DataFrame.hist
, but not sure how to select proper arguments.