AttributeError: 'Styler' object has no attribute 'set_na_rep'
时间: 2023-08-03 22:06:03 浏览: 335
【Python】AttributeError: ‘AutoSchema’ object has no attribute ‘get_link’
5星 · 资源好评率100%
这个错误是因为在使用`set_na_rep`属性时,`Styler`对象没有这个属性。根据引用[1]中提到的原因,当使用一次`.style.applymap()`或者`.style.apply()`函数后,`DataFrame`对象就变成了`Styler`对象。所以,你需要在一行代码中将两次使用合并在一起,而不是分开使用。根据引用[2]中提供的正确代码,你可以将两个函数应用在同一个`Styler`对象上,如下所示:
```python
data_df = data_df.style.applymap(low_buy_price_red, subset=['离买点的百分点']).apply(green_descend, subset=['选股至今'])
```
这样,你就可以避免`AttributeError: 'Styler' object has no attribute 'set_na_rep'`错误的发生了。
阅读全文