小编典典

如何抑制matplotlib警告?

python

matplotlib每次我都会收到警告import pandas

/usr/local/lib/python2.7/site-packages/matplotlib/__init__.py:872: UserWarning: axes.color_cycle is deprecated and replaced with axes.prop_cycle; please use the latter.


 warnings.warn(self.msg_depr % (key, alt_key))

抑制它的最佳方法是什么?所有软件包都是最新的。

Conf: OSX带有Brew Python 2.7.10(默认,2015年7月13日,12:05:58),pandas ==
0.17.0和matplotlib == 1.5.0


阅读 220

收藏
2020-12-20

共1个答案

小编典典

您可以禁止所有警告:

import warnings
warnings.filterwarnings("ignore")

import pandas
2020-12-20