欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

AttributeError: module 'pandas' has no attribute 'rolling_mean' 报错解决方法

程序员文章站 2022-03-26 23:19:41
...

使用这句代码: temp = pd.rolling_mean(temp, 2) 会报以下错误:

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

解决方法:
                    将代码改为:temp = temp .rolling(2).mean()