问题描述
在网上很多关于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.
虽然报错了,但是程序还是能正常运行,不过,当你把这个告警解决了,会发现,代码运行速度有所提升。
解决方案:
将命令修改为:文章来源:https://www.toymoban.com/news/detail-782560.html
style.use("seaborn-v0_8-whitegrid")
这样子就不会报错了。文章来源地址https://www.toymoban.com/news/detail-782560.html
到了这里,关于MatplotlibDeprecationWarning报错处理(style.use(‘seaborn-whitegrid‘))的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!