我一直在尝试创建一个分组排序的条形图,如这一个http://chrisalbon.com/python/matplotlib_grouped_bar_plot.html从一个DataFrame创建从dict通过这样做:
food = {'Apples as fruit': 4.68, 'Berries': 7.71, 'Butter': 12.73,
'Cheese': 4.11, 'Dairy, Other': 4.97}
dframe = pd.DataFrame([food])
dframe.plot(kind='bar')
Apples as fruit Berries Butter Cheese Dairy, Other
0 4.68 7.71 12.73 4.11 4.97
字符串
第一组应该有苹果和浆果,第二组应该有黄油和奶酪牛奶到最后。到目前为止,上面没有分开的酒吧(见图)。我怎么才能做到这一点,以及排序酒吧在每一组?
的数据
1条答案
按热度按时间zd287kbt1#
字符串
输出如下:
型
的数据