pandas中没有了'rolling_mean' 'rolling_std'
Posted xingnie
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了pandas中没有了'rolling_mean' 'rolling_std'相关的知识,希望对你有一定的参考价值。
rolmean = pd.rolling_mean(timeseries, window=12)
rolstd = pd.rolling_std(timeseries, window=12)
expwighted_avg = pd.ewma(ts_log, halflife=12)
会有报错
AttributeError: module ‘pandas‘ has no attribute ‘rolling_mean‘
AttributeError: module ‘pandas‘ has no attribute ‘rolling_std‘
AttributeError: module ‘pandas‘ has no attribute ‘ewma‘
这是因为pandas版本跟新了,应该改为
rolmean = timeseries.rolling(12).mean()
rolstd = timeseries.rolling(12).std()
expwighted_avg = pd.DataFrame.ewm(ts_log, halflife=12).mean()
以上是关于pandas中没有了'rolling_mean' 'rolling_std'的主要内容,如果未能解决你的问题,请参考以下文章
模块'pandas_datareader'没有属性'get_data_yahoo'
ModuleNotFoundError:没有名为'pandas'的模块
解决AttributeError:模块'pandas'没有使用command-prompt或pycharm属性'core'