AttributeError: 'DataFrame' object has no attribute 'rolling'
时间: 2023-07-31 18:13:11 浏览: 215
Python3下错误AttributeError: ‘dict’ object has no attribute’iteritems‘的分析与解决
5星 · 资源好评率100%
这个错误通常发生在使用 Pandas DataFrame 对象上调用了 `rolling` 方法,但 DataFrame 对象本身并没有 `rolling` 属性。请确保你的 DataFrame 对象是正确创建的,并且版本与你使用的 Pandas 版本兼容。另外,还需要确认是否正确导入了 Pandas 库。如果问题仍然存在,请提供更多的代码和错误信息,以便更好地帮助你解决问题。
阅读全文