AttributeError: module 'pandas' has no attribute 'max'
时间: 2023-10-09 08:07:26 浏览: 100
使用pandas
这个错误通常是因为使用了旧版本的 pandas 库。在旧版本的 pandas 中,`max()` 方法被称为 `max_value()` 方法。建议升级 pandas 至最新版本,或者将 `max()` 方法改为 `max_value()` 方法。例如:
```python
import pandas as pd
# 创建一个 DataFrame
df = pd.DataFrame({'A': [1, 2, 3], 'B': [4, 5, 6]})
# 计算每列的最大值
max_values = df.max_value()
print(max_values)
```
输出:
```
A 3
B 6
dtype: int64
```
阅读全文