标签: python pandas
我的DataFrame看起来像这样
我想绘制它:
df2[['width', 'height', 'depth']].head(20).plot.bar(figsize=(8, 8), fontsize=16)
效果很好,但我需要增加Y轴的点数。我想添加2400,1900等数字。我该怎么做?为什么Y轴上只有6个点?
答案 0 :(得分:3)
好的,所以你只需要传递yticks参数。 yticks不是bar的直接参数,而是传递给plot。
yticks
bar
plot
df2[['width', 'height', 'depth']].head(20).plot.bar(figsize=(8, 8), fontsize=16, yticks = range(0,2600,200)) plt.show()
结果:
如果你想对x轴做同样的事情,你也可以使用xticks
xticks