如何避免一些xticks被大熊猫自动隐藏?

时间:2014-11-29 10:46:51

标签: python matplotlib pandas

我有一个包含18行和4列的数据框。现在我想绘制它并将其索引用作xticks,所以我执行以下操作:

ax0 = dfVariableImportance.plot()
ax0.set_xticklabels(dfVariableImportance.index.tolist(), rotation='vertical', visible=True)
plt.show()

enter image description here

事实证明,有些xticks是自动隐藏的:应该有18个xticks,但只显示其中的9个(似乎是自动隐藏)。

如何显示所有18个xticks?

1 个答案:

答案 0 :(得分:1)

您应该可以在dataframe.plot()

中执行此操作
dfVariableImportance.plot(xticks=dfVariableImportance.index)