在pandas数据框中绘制条形图

时间:2018-04-07 17:42:24

标签: python pandas plot

我有一个像这样的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)的条目数?

1 个答案:

答案 0 :(得分:2)

使用Series.value_countsSeries.sort_index和最后Series.plot.bar

df['Day_of_month'].value_counts().sort_index().plot.bar()

enter image description here