1. ホーム
  2. Python

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

2022-02-21 08:11:54

temp = pd.rolling_mean(temp, 2)というコードを使用すると、以下のようなエラーが発生します。

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

解決策
                    temp = temp .rolling(2).mean() に変更します。


役に立ったら「いいね!」をお願いします^_^。