标签: python pandas matplotlib
我想使用Matplotlib object-oriented interface从数据框中绘制条形图。据我了解,Matplotlib axe.bar方法只接受两个参数x和height。我是否需要手动从数据框中提取数据,这对于复杂的图表来说效率似乎非常低,或者是否有更简单的方法?例如,有没有办法将df.plot(kind='bar')方法与Matplotlib axe对象一起使用?
axe.bar
x
height
df.plot(kind='bar')
axe