Closed arteymix closed 2 years ago
This is related to #18
So, ISO 8601 is not part of base R and attempting to parse it using strptime will not deal properly with the timezone. Ugh.
strptime
I learned that is.integer does not return TRUE if provided with an integer.
is.integer
TRUE
I think this would be missing a library(lubridate) call somewhere to import the relevant functions.
library(lubridate)
Also, lubridate is part of Tidyverse. Is it something that is desirable?
Alternatives I considered:
This is related to #18
So, ISO 8601 is not part of base R and attempting to parse it using
strptime
will not deal properly with the timezone. Ugh.I learned that
is.integer
does not returnTRUE
if provided with an integer.I think this would be missing a
library(lubridate)
call somewhere to import the relevant functions.Also, lubridate is part of Tidyverse. Is it something that is desirable?
Alternatives I considered: