如何通过显示最具代表性的x轴值来修复图?

时间:2018-07-21 14:22:10

标签: python python-3.x pandas matplotlib

我正在绘制熊猫数据框中的某些频率,因此我决定使用plot功能:

fig, ax = subplots()
df3.timestamp.value_counts().sort_index().plot(figsize=(25,10), colormap='jet',fontsize=20, kind='bar')
ax.grid()

enter image description here

但是,由于我有多个时间戳,因此我的图形类似于上图。如何仅显示最具代表性的日期来固定x轴标签?

0 个答案:

没有答案