'DataFrame' object has no attribute 'reindex_axis'
时间: 2023-12-13 18:34:09 浏览: 202
Python3下错误AttributeError: ‘dict’ object has no attribute’iteritems‘的分析与解决
5星 · 资源好评率100%
'dataframe'对象没有'reindex_axis'属性的错误通常是由于使用了过时的方法而导致的。在新版本的pandas中,'reindex_axis'方法已被弃用,应该使用'reindex'方法来替代。下面是一个使用'reindex'方法的例子:
```python
import pandas as pd
# 创建一个DataFrame
df = pd.DataFrame({'A': [1, 2, 3], 'B': [4, 5, 6], 'C': [7, 8, 9]})
# 使用reindex方法重新索引行
df = df.reindex([2, 1, 0])
# 输出结果
print(df)
```
阅读全文