pandas 带有滚动掩码的滚动平均值/不包括条目

pandas rolling average with a rolling mask / excluding entries

我有一个 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 或平坦),但不包括从 t-48 到 t-52 的条目。我想我应该做一种滚动面膜,但我不知道怎么做。我也可以尝试计算两个单独的平均值并获得结果作为差异,但它看起来很脏,我想知道是否有更好的方法可以推广到其他非线性计算...

非常感谢!

很遗憾,没有。来自 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.

您可以使用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中的xDataFrame总是有60行,所以你可以根据这个指定你的位置索引,知道第一个条目(0)是t-60

我不完全确定你的排除逻辑,但你可以根据你的情况轻松修改我的解决方案。