Python rolling_corr取消后,应该用什么方法处理

After Python rolling_corr is canceled, what method should be used to deal with it

Pythonrolling_corr取消后,应该用什么方法处理?

如图,我想按照code列进行分组,然后计算16列的corr值每个代码每 10 天以 10 天为单位。不知道一行怎么用(错误显示可能是因为中间有空值)

sample image

你有两种解决方法

pd.Series(x).rolling(window=N).mean()

from scipy.ndimage.filters import uniform_filter1d
uniform_filter1d(x, size=N)