标签: python python-3.x pandas matplotlib
我正在绘制熊猫数据框中的某些频率,因此我决定使用plot功能:
plot
fig, ax = subplots() df3.timestamp.value_counts().sort_index().plot(figsize=(25,10), colormap='jet',fontsize=20, kind='bar') ax.grid()
但是,由于我有多个时间戳,因此我的图形类似于上图。如何仅显示最具代表性的日期来固定x轴标签?