I\'ve taken my Series and coerced it to a datetime column of dtype=datetime64[ns] (though only need day resolution...not sure how to change).
datetime64[ns]
i
All of these answers seem overly complex, as least with 'modern' pandas it's two lines.
df.set_index('date', inplace=True) df.resample('M').size().plot.bar()