I have a pivot table (i.e):
City Atlanta New York Chicago
Region name Slow Grid Fathe
2010-01 1 2 3
2010-02 3 15 23
... ...
2016-01 12 1 0
when I try to plot some values with the following:
pivot.ix['2016-01'].plot(kind='barh',
figsize=(7, 10),
width=0.8,
fontsize=10,
colormap='autumn')
How to change the code to plot this graph ascendingly?
