Python rolling_corr取消后,应该用什么方法处理
After Python rolling_corr is canceled, what method should be used to deal with it
Pythonrolling_corr取消后,应该用什么方法处理?
如图,我想按照code
列进行分组,然后计算1
和6
列的corr
值每个代码每 10 天以 10 天为单位。不知道一行怎么用(错误显示可能是因为中间有空值)
sample image
你有两种解决方法
pd.Series(x).rolling(window=N).mean()
或
from scipy.ndimage.filters import uniform_filter1d
uniform_filter1d(x, size=N)
Pythonrolling_corr取消后,应该用什么方法处理?
如图,我想按照code
列进行分组,然后计算1
和6
列的corr
值每个代码每 10 天以 10 天为单位。不知道一行怎么用(错误显示可能是因为中间有空值)
sample image
你有两种解决方法
pd.Series(x).rolling(window=N).mean()
或
from scipy.ndimage.filters import uniform_filter1d
uniform_filter1d(x, size=N)