成功解决matplotlib\cbook\deprecation.py:107: MatplotlibDeprecationWarning: Passing one of 'on', 'true',
成功解决matplotlib\cbook\deprecation.py:107: MatplotlibDeprecationWarning: Passing one of 'on', 'true',
解决问题
matplotlib\cbook\deprecation.py:107: MatplotlibDeprecationWarning: Passing one of 'on', 'true', 'off', 'false' as a boolean is deprecated; use an actual boolean (True/False) instead.
warnings.warn(message, mplDeprecation, stacklevel=1)
解决思路
错误地址:matplotlib\cbook\deprecation.py:107
Matplotlib弃用警告:将“on”、“true”、“off”、“false”中的一个作为布尔值传递;而是使用实际的布尔值(True/False)。
解决方法
此信息提示为警告,而不是error,即使不处理也不会影响代码编程的运行。如果想要去掉,可以更新库至最新版本!
然后根据要求提示修改使用方法!
该方法在未来的版本中即将被丢弃,可以将“on”、“true”、“off”、“false”中的一个作为布尔值传递;而是使用实际的布尔值(True/False)来代替!
赞 (0)