MatplotlibDeprecationWarning报错处理(style.use(‘seaborn-whitegrid‘))

问题描述

在网上很多关于matplotlib的旧教程里,都会使用到以下命令

style.use('seaborn-whitegrid')

在python3.6版本以后会报错:

MatplotlibDeprecationWarning: The seaborn styles shipped by Matplotlib are deprecated since 3.6, as they no longer correspond to the styles shipped by seaborn. However, they will remain available as ‘seaborn-v0_8-<style>’. Alternatively, directly use the seaborn API instead. 

虽然报错了,但是程序还是能正常运行,不过,当你把这个告警解决了,会发现,代码运行速度有所提升。

解决方案:

将命令修改为:

style.use("seaborn-v0_8-whitegrid")

这样子就不会报错了。

文章出处登录后可见!

已经登录?立即刷新

共计人评分,平均

到目前为止还没有投票!成为第一位评论此文章。

(0)
社会演员多的头像社会演员多普通用户
上一篇 2023年11月8日
下一篇 2023年11月8日

相关推荐