We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This shouldn't warn, since it's a Series.plot.
The warning should only show up for Axes.plot(datetimelike, ndarray).
Axes.plot(datetimelike, ndarray)
In [1]: import pandas as pd In [2]: import numpy as np In [3]: ts = pd.Series(np.random.randn(1000), ...: index=pd.date_range('1/1/2000', periods=1000)) ...: ts = ts.cumsum() In [4]: ts.plot() /Users/taugspurger/sandbox/pandas/pandas/plotting/_matplotlib/converter.py:96: 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.
The text was updated successfully, but these errors were encountered:
Fixed converter warning.
fb694da
Closes pandas-dev#26760 Tests were being skipped, because the module name changed.
Successfully merging a pull request may close this issue.
This shouldn't warn, since it's a Series.plot.
The warning should only show up for
Axes.plot(datetimelike, ndarray)
.The text was updated successfully, but these errors were encountered: