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
It seems that fast_strptime considers the input string to be specified in GMT and uses its tz argument to bring the specified time relative to the timezone of the tz argument.
tz
> "12/03/16 12:00" %>% strptime("%d/%m/%y %H:%M", tz="Europe/Zurich") [1] "2016-03-12 12:00:00 CET"
versus
> "12/03/16 12:00" %>% fast_strptime("%d/%m/%y %H:%M", tz="Europe/Zurich") [1] "2016-03-12 13:00:00 CET"
I am running R 3.2.3 and lubridate 1.5.0.
The text was updated successfully, but these errors were encountered:
This is a bug. Looking into it right now. Thanks.
Sorry, something went wrong.
2852079
No branches or pull requests
It seems that fast_strptime considers the input string to be specified in GMT and uses its
tz
argument to bring the specified time relative to the timezone of the tz argument.versus
I am running R 3.2.3 and lubridate 1.5.0.
The text was updated successfully, but these errors were encountered: