熊猫图在图上方打印所有标签

时间:2020-02-05 15:32:42

标签: pandas matplotlib plot jupyter-notebook

为什么在Jupyter中,当我要绘制序列时,会得到以下输出:

ax = hist_data.plot.bar(figsize=(20,5))
plt.ylabel('Count')
plt.xlabel('Values')
plt.title('Chart')
labels = [t if not i%10 else "" for i,t in enumerate(ax.get_xticklabels())]
ax.set_xticklabels(labels)

我没有看到情节,而是看到了:

[Text(0, 0, '1204'),
 Text(0, 0, ''),
 Text(0, 0, ''),
 Text(0, 0, ''),
 Text(0, 0, ''),
 Text(0, 0, ''),
 Text(0, 0, ''),
 Text(0, 0, ''),
 Text(0, 0, ''),
 Text(0, 0, ''),
 Text(0, 0, ''),...

及以下,即情节。前面有很多行。熊猫绘图中是否可以选择不显示这些标签?我不需要它们,它们在情节中:)

感谢您的任何建议!

0 个答案:

没有答案