我知道有一个简单的实现可以做到这一点,但我不记得语法。有一个简单的 pandas 时间序列,我想按月汇总数据。具体来说,我想添加数月和数年的数据以获取一些摘要。可以用切片来编写,但我记得看到过自动执行它的语法。
import pandas as pd
df = Series(randn(100), index=pd.date_range('2012-01-01', periods=100))
以年为索引的多索引系列,以月为索引,将获得一等奖。
部分答案:
ds.resample('M', how=sum) # for calendar monthly
ds.resample('A', how=sum) # for calendar yearly
知道如何优雅地按年总和进行多索引吗?