-
-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
Using pandas.TimeSeries_DateFormatter in bar plot? #1918
Comments
Just in case it's useful, I found a bug that looks related to this issue to me. This code from an ipython notebook shows the problem:
The first time it's executed it shows this warning, and the plot does not show:
Next executions the warning does not appear, neither the plot. Some things that makes the plot appear:
Hope this helps |
Related with #8803 |
I've just run into this problem as well. Would very much appreciate a fix. |
Same problem here. Is there a workaround? |
Funny, I subscribed to this issue yesterday and someone replies to it! I too have had lots of problems with |
Just hit this again. Can't figure out how to get the bar plot to show dates sensibly at all, it's showing a complete timestamp |
Exception for reference:
|
I found a workaround, by applying this at the end: In this case,
|
#1918 (comment) works!
|
I'm not a huge fan of the workaround and hit this quite frequently still. It also doesn't produce x-axis labels which are as good a |
workaround still saving the day! How to set xlim with this solution? Already tried |
This comment was marked as off-topic.
This comment was marked as off-topic.
|
xref #5774
When time series is set as index, line plot uses the TimeSeries_DateFormatter for recognizable date formatting. However, bar plot use the FixedFormatter which outputs the datetime as it is. Can bar plot also use the DateFormatter?
The text was updated successfully, but these errors were encountered: