matplotlib每次我都会收到警告import pandas:
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
您可以禁止所有警告:
import warnings warnings.filterwarnings("ignore") import pandas