-
Notifications
You must be signed in to change notification settings - Fork 14
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
date_format doesn't respect localized time zone #8
Comments
|
Work around |
|
The issue is, because we use Matplotlib internals the most sane solution would be to use the timezone of the first date. So if you pass the format functions times with different dates the result may be surprising. |
|
Seems reasonable, and it would cover my use case. If you were concerned about a user submitting different timezones, you could do a check that they are all the same and emit a warning if they aren't. |
The MPL DateFormatter knows how to handle time zones. It does not infer time zones from the data. We have to explicitly set the time zone information. fixes #8
The MPL DateFormatter knows how to handle time zones. It does not infer time zones from the data. We have to explicitly set the time zone information. fixes #8
date_format doesn't respect the time zone of a
pandas.Timestamp:The text was updated successfully, but these errors were encountered: