我有一个像这样的pandas数据框:
Date Day_of_month
2017/1/16 16
2016/2/16 16
2018/1/16 16
2015/1/17 17
2013/1/18 18
如何在x轴上绘制月份的条形图,以及在y轴上绘制月份特定日期(例如16)的条目数?
答案 0 :(得分:2)
使用Series.value_counts
,Series.sort_index
和最后Series.plot.bar
:
df['Day_of_month'].value_counts().sort_index().plot.bar()