pc_represent_fund_merge_out=pc_represent_fund_merge_out.style.highlight_null(null_color='orange') 'Styler' object is not subscriptable
时间: 2024-03-15 17:46:43 浏览: 137
GuPiaoLSTM.zip_insided92_represent966_stock deep learning_股票_股票人
这个错误是因为你正在尝试对一个 `Styler` 对象进行索引,而 `Styler` 对象是不支持索引的。如果你想要对 `Styler` 对象进行索引,你需要先将其转换为 `DataFrame` 对象。例如:
```
pc_represent_fund_merge_out = pc_represent_fund_merge_out.style.highlight_null(null_color='orange').data
```
这样,你就可以对 `pc_represent_fund_merge_out` 进行索引了。
阅读全文