AttributeError: type object 'DataFrame' has no attribute 'ewma'
时间: 2023-12-18 12:30:08 浏览: 120
```python
import pandas as pd
# 读取Excel数据
data = pd.read_excel(r"C:\Users\ASUS\Desktop\0012\data7.1.2.xlsx")
# 使用ewma方法计算指数加权移动平均
data['ewma'] = data['value'].ewma(span=10)
```
相关问题
AttributeError: type object object has no attribute find
很抱歉,引用中提到的错误信息是"AttributeError: type object ‘object’ has no attribute 'dtype’",而非"AttributeError: type object object has no attribute find"。这个错误通常是由于pandas或numpy版本问题引起的,可以尝试升级或降级这些库的版本来解决。具体的解决方法可以参考引用中提供的链接。
AttributeError: 'DataFrame' object has no attribute 'append' AttributeError: 'DataFrame' object has no attribute 'append'
这个错误通常是因为pandas DataFrame对象没有append方法导致的。相反,您可以使用concat方法将两个DataFrame对象连接在一起。以下是一个示例代码:
```python
import pandas as pd
# 创建两个DataFrame对象
df1 = pd.DataFrame({'A': [1, 2, 3], 'B': [4, 5, 6]})
df2 = pd.DataFrame({'A': [7, 8, 9], 'B': [10, 11, 12]})
# 使用concat方法将两个DataFrame对象连接在一起
df3 = pd.concat([df1, df2])
# 打印结果
print(df3)
```
阅读全文