AttributeError: 'Series' object has no attribute 'astypety'
时间: 2023-09-15 14:23:07 浏览: 37
Python3下错误AttributeError: ‘dict’ object has no attribute’iteritems‘的分析与解决
5星 · 资源好评率100%
这个错误通常是因为在 Pandas 的 Series 对象上使用了 astypety 方法,但是这个方法不存在,正确的方法是 astype。请检查你的代码中是否存在类似下面的错误:
```python
import pandas as pd
s = pd.Series([1, 2, 3])
s.astypety(int)
```
应该将 astypety 改为 astype:
```python
import pandas as pd
s = pd.Series([1, 2, 3])
s.astype(int)
```
这样就不会出现上述的错误了。
阅读全文