jupyter AttributeError: 'Axes' object has no attribute 'is_first_col'
时间: 2023-11-12 20:07:26 浏览: 332
【Python】AttributeError: ‘AutoSchema’ object has no attribute ‘get_link’
5星 · 资源好评率100%
这个错误通常是因为你的matplotlib版本过低导致的。is_first_col()是matplotlib 3.4.0版本中新增的方法,如果你的版本低于这个版本,就会出现这个错误。你可以尝试升级matplotlib到最新版本,或者手动添加is_first_col()方法到你的代码中。另外,也可以尝试使用其他的绘图库,例如seaborn或plotly等。
阅读全文