AttributeError: 'DataFrame' object has no attribute 'show'
时间: 2023-12-09 12:37:06 浏览: 348
Python3下错误AttributeError: ‘dict’ object has no attribute’iteritems‘的分析与解决
5星 · 资源好评率100%
根据提供的引用内容,可以看出AttributeError: 'DataFrame' object has no attribute 'show'的错误是因为DataFrame对象没有show()方法。如果想要展示DataFrame对象,可以使用以下两种方法:
1.使用print()函数展示DataFrame对象
```python
import pandas as pd
data = pd.read_excel(r"C:\Users\ASUS\Desktop\0012\data7.1.2.xlsx")
print(data)
```
2.使用Jupyter Notebook或者JupyterLab展示DataFrame对象
在Jupyter Notebook或者JupyterLab中,可以直接输入DataFrame对象的名称并运行,系统会自动展示DataFrame对象。
阅读全文