pandas中没有了'rolling_mean' 'rolling_std'

rolmean = pd.rolling_mean(timeseries, window=12)

rolstd = pd.rolling_std(timeseries, window=12)

会有报错

AttributeError: module 'pandas' has no attribute 'rolling_mean'

AttributeError: module 'pandas' has no attribute 'rolling_std'

 

这是因为pandas版本跟新了,应该改为

rolmean = timeseries.rolling(12).mean()
rolstd = timeseries.rolling(12).std()

 

上一篇:实例恢复(Instance Recovery)之前滚(Rolling Forward)和回滚(Rolling Back)


下一篇:Hystrix的使用,及@Hystrix参数说明