我有一个包含18行和4列的数据框。现在我想绘制它并将其索引用作xticks,所以我执行以下操作:
ax0 = dfVariableImportance.plot()
ax0.set_xticklabels(dfVariableImportance.index.tolist(), rotation='vertical', visible=True)
plt.show()
事实证明,有些xticks是自动隐藏的:应该有18个xticks,但只显示其中的9个(似乎是自动隐藏)。
如何显示所有18个xticks?
答案 0 :(得分:1)
您应该可以在dataframe.plot()
中执行此操作dfVariableImportance.plot(xticks=dfVariableImportance.index)