AttributeError: 'Styler' object has no attribute 'hide_index'. Did you mean: 'hide_index_'?
时间: 2023-10-11 08:10:08 浏览: 589
【Python】AttributeError: ‘AutoSchema’ object has no attribute ‘get_link’
5星 · 资源好评率100%
这个错误可能是因为您正在使用的 pandas 版本不支持 `hide_index()` 函数,而是支持 `hide_index_()` 函数。
您可以尝试将 `hide_index()` 替换为 `hide_index_()` 并再次运行程序。如果仍然出现错误,则您可能需要升级 pandas 版本以获得该函数的支持。
阅读全文