提取每个月最后一天的数据

df.loc[df.groupby(df.index.to_period(‘M’)).apply(lambda x: x.index.max())]

你可能感兴趣的:(笔记,学习)