module 'pandas' has no attribute 'read_rds'
时间: 2023-11-01 16:00:42 浏览: 72
pandas read_excel()和to_excel()函数解析
您可以尝试使用 `pandas` 中的 `read_feather` 函数来读取 R数据文件。该函数可以读取 `.rds` 文件。下面是一个示例代码:
```python
import pandas as pd
data = pd.read_feather('your_file.rds')
```
阅读全文