``` python from pandas import * N = 1000 s = Series(np.arange(N), index=date_range(start='1/1/2012', freq='5min', periods=N)) s.resample('MS') ``` Not sure if this is new, first time using MS.