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
I just filed this at data.table: Rdatatable/data.table#4117
data.table
And this fix for base R: https://bugs.r-project.org/bugzilla/show_bug.cgi?id=17674
I notice also several usages of == 'UTC' or != 'UTC' in lubridate:
== 'UTC'
!= 'UTC'
lubridate
lubridate/R/parse.r:679: if (tz == "UTC"){ lubridate/R/parse.r:703: if (tz == "UTC") { lubridate/R/parse.r:759: if (tz != "UTC") { lubridate/R/parse.r:802: if (tz != "UTC"){ lubridate/R/stamp.r:110: if (tz(x[[1]]) != "UTC") lubridate/R/util.r:119: if (tz == "UTC") utc lubridate/R/POSIXt.r:35: t0 <-if (tz == "UTC") origin else force_tz(origin, tz)
If you're amenable, I would file a PR to an equivalent is_utc internal utility & replace the above instances
is_utc
The text was updated successfully, but these errors were encountered:
Yes, please.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
I just filed this at
data.table
: Rdatatable/data.table#4117And this fix for base R: https://bugs.r-project.org/bugzilla/show_bug.cgi?id=17674
I notice also several usages of
== 'UTC'
or!= 'UTC'
inlubridate
:If you're amenable, I would file a PR to an equivalent
is_utc
internal utility & replace the above instancesThe text was updated successfully, but these errors were encountered: