module 'pandas' has no attribute 'NA'
时间: 2023-11-16 13:06:09 浏览: 161
求解报错:AttributeError:module ‘os’ has no attribute ‘exit’
module 'pandas' has no attribute 'NA'是因为pandas库已经将NA属性废弃,现在使用的是pandas库中的pd.NA。可以通过以下代码进行验证:
```python
import pandas as pd
print(pd.NA)
```
输出结果为:<NA>
阅读全文