解决python中AttributeError: module 'pandas' has no attribute 'rolling_std'

python中出现AttributeError: module ‘pandas’ has no attribute 'rolling_std’错误,是因为pandas从0.18.0版本开始,将函数pd.rolling_*弃用,并用相应的函数来代替,以下是官方文档的说明(pandas 0.18.0发行版本说明文档链接):
在这里插入图片描述

示例:

>>>import pandas as pd
>>>s = pd.Series(range(3))
>>>pd.rolling_mean(s, window = 2, min_periods = 1) #这是以前的语法,现在将其替换为如下语法
>>>s.rolling(window = 2, min_periods = 1).mean()

你可能感兴趣的:(python学习)