AttributeError: module 'numpy' has no attribute 'read_table'
时间: 2023-11-09 09:03:43 浏览: 209
mdk_armcc_user_guide.pdf
这个错误提示表明在使用 numpy 模块的 read_table 函数时出现了错误,因为 numpy 模块并没有这个函数。可能是代码中出现了拼写错误或者版本不兼容等问题。
正确的函数应该是 pandas 模块中的 read_table 函数,可以通过以下方式导入:
```python
import pandas as pd
data = pd.read_table('filename.txt')
```
阅读全文