我有一个像这样的时间索引的pandas数据框
import pandas as pd
import numpy as np
idx = pd.date_range(start='2000',end='2001')
df = pd.DataFrame(np.random.normal(size=(len(idx),2)),index=idx)
看起来像这样:
0 1
2000-01-01 0.565524 0.355548
2000-01-02 -0.234161 0.888384
我想像
那样计算滚动平均值df_avg = df.rolling(60).mean()
但不包括始终在+ - 2天前10天对应(比如说)的条目。换句话说,对于每个日期,df_avg应包含前60个条目的平均值(以ewm或flat为指数),但不包括从t-48到t-52的条目。我想我应该做一种滚动面具,但我不知道怎么做。我也可以尝试计算两个单独的平均值并获得结果作为差异,但它看起来很脏,我想知道是否有更好的方法可以推广到其他非线性计算......
非常感谢!
答案 0 :(得分:2)
您可以使用apply自定义您的功能:
# select indexes you want to average over
avg_idx = [idx for idx in range(60) if idx not in range(8, 13)]
# do rolling computation, calculating average only on the specified indexes
df_avg = df.rolling(60).apply(lambda x: x[avg_idx].mean())
apply中的x
DataFrame将始终有60行,因此您可以根据此指定位置索引,因为知道第一个条目(0)是t-60
。
我不完全确定您的排除逻辑,但您可以轻松修改我的解决方案。
答案 1 :(得分:0)
不幸的是,不是。来自pandas的源代码:
df.rolling(window, min_periods=None, freq=None, center=False, win_type=None,
on=None, axis=0, closed=None)
window : int, or offset
Size of the moving window. This is the number of observations used for
calculating the statistic. Each window will be a fixed size.
If its an offset then this will be the time period of each window. Each
window will be a variable sized based on the observations included in
the time-period.