[Tips] pandas获取每月最后一天
作者:互联网
以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()
标签:每月,offsets,MonthEnd,tseries,offset,import,Tips,pandas 来源: https://www.cnblogs.com/immortalBlog/p/14808985.html