熊猫情节改变了y轴

时间:2017-08-03 08:05:04

标签: python pandas

我的DataFrame看起来像这样

enter image description here

我想绘制它:

df2[['width', 'height', 'depth']].head(20).plot.bar(figsize=(8, 8), fontsize=16)

enter image description here

效果很好,但我需要增加Y轴的点数。我想添加2400,1900等数字。我该怎么做?为什么Y轴上只有6个点?

1 个答案:

答案 0 :(得分:3)

好的,所以你只需要传递yticks参数。 yticks不是bar的直接参数,而是传递给plot

df2[['width', 'height', 'depth']].head(20).plot.bar(figsize=(8, 8), fontsize=16, yticks = range(0,2600,200))
plt.show()

结果:

enter image description here

如果你想对x轴做同样的事情,你也可以使用xticks