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 is different from ISOdateTime
ISOdateTime
lubridate::make_datetime(2016, 10, 15, 0,0,0 , tz = "America/New_York") [1] "2016-10-14 20:00:00 EDT" ISOdatetime(2016, 10, 15, 0,0,0 , tz = "America/New_York") [1] "2016-10-15 EDT"
from the docs:
make_datetime is a very fast drop-in replacement for base::ISOdate and base::ISOdatetime.
The text was updated successfully, but these errors were encountered:
Indeed. force_tz must be used instead. It will slow down the date creation considerably :(.
force_tz
Sorry, something went wrong.
98ebf13
Fixed, with new update functionality, this is very fast even for non-UTC tzones.
No branches or pull requests
This is different from
ISOdateTime
from the docs:
The text was updated successfully, but these errors were encountered: