以pandas时间格式存储日期时,可以通过如下方式获取一个datetimeIndex内每个月的最后一天
from pandas.tseries.offsets import MonthEnd
offset = MonthEnd()
如果是以datatimeIndex作为index,想在数据上操作(比如取一批数据在每个月末的平均值)
from pandas.tseries.offsets import MonthEnd
offset = MonthEnd()
daily_price.groupby(offset.rollforward).mean()