出现AttributeError: module 'dask.dataframe' has no attribute 'read_excel'
时间: 2023-12-05 19:41:53 浏览: 390
读excel.docx
出现AttributeError: module 'dask.dataframe' has no attribute 'read_excel'的问题可能是因为dask.dataframe模块中没有read_excel方法。可以尝试使用pandas模块来读取Excel文件,以下是一个示例代码:
```python
import pandas as pd
df = pd.read_excel('your_file.xlsx')
```
如果您一定要使用dask.dataframe模块来读取Excel文件,可以尝试使用以下代码:
```python
import dask.dataframe as dd
df = dd.read_excel('your_file.xlsx', engine='openpyxl')
```
阅读全文