-
-
Notifications
You must be signed in to change notification settings - Fork 18.2k
New issue
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
matplotlib autoformat issue when directly calling plt.plot #18404
Comments
It seems that the older version‘s bug reappears. |
See http://pandas-docs.github.io/pandas-docs-travis/whatsnew.html#no-automatic-matplotlib-converters. Duplicate of #18301 |
Thanks vm for the quick response - indeed a deprecation warning helps when someone (like myself) fails to read the what's new page when updating pandas :) |
Yes, I was actually wondering the same yesterday: #18307 (comment) |
Failed to format x-axis as Timestamp
x-axis is show as raw number of epoch time in nanoseconds (~1.5e18). However, if we call
ts.plot()
once before callingplt.plot
, x-axis is correctly formatted and the correct behavior will persist for the entire python session, even if we're creating new Series or DataFrame.I recently upgraded from pandas 0.17.1 to 0.21.0 and the older version did not have this issue.
Installed Versions
The text was updated successfully, but these errors were encountered: