warnings.warn(msg, FutureWarning)
あるプログラムを実行すると以下の警告がでます。
解決方法を教えて欲しいです。
よろしくお願いします
FutureWarning: Using an implicitly registered datetime converter for a matplotlib plotting method. The converter was registered by pandas on import. Future versions of pandas will require you to explicitly register matplotlib converters.
To register the converters:
>>> from pandas.plotting import register_matplotlib_converters
>>> register_matplotlib_converters()
warnings.warn(msg, FutureWarning)