我正在绘制1-5星的数据框,并且效果很好。
5 4424
4 2177
1 1529
3 1070
2 800
但是,我想按升序对索引进行排序-“ 1,2,3,4,5”,而不是按照实际值进行绘制:
绘制的代码:
j.sort_index(by='stars').plot(kind='bar', rot = 1, figsize=(15,6))
我希望索引按升序排列-1,2,3,4,5。
答案 0 :(得分:1)
从by
中删除参数sort_index
,以默认索引值进行排序:
j.sort_index().plot(kind='bar', rot = 1, figsize=(15,6))