This R package has three functions for dealing with dates.
parse_iso_8601
recognizes and parses all valid ISO 8601 date and time formats. It can also be used as an ISO 8601 validator.parse_date
can parse a date when you don’t know which format it is in. First it tries all ISO 8601 formats. Then it tries git’s versatile date parser. Lastly, it tries as.POSIXct
.format_iso_8601
formats a date (and time) in specific ISO 8601 format.The git parser does not work for dates before 1970 and after 2100. For these dates the current year is used instead:
## [1] "1971-04-15 UTC"
## [1] "2022-04-15 UTC"
## [1] "2022-04-15 UTC"
parse_iso_8601
recognizes all valid ISO 8601 formats, and gives an NA
for invalid dates. Here are some examples
## [1] "2013-02-08 09:00:00 UTC"
## [1] "2013-02-08 09:30:00 UTC"
## [1] "2013-02-08 09:00:00 UTC"
## [1] "2013-02-08 09:30:00 UTC"
## [1] "2013-02-08 09:30:26 UTC"
## [1] "2013-02-08 09:30:26 UTC"
## [1] "2013-02-08 09:30:30 UTC"
## [1] "2013-02-08 09:15:00 UTC"
## [1] "2013-02-08 09:30:26 UTC"
## [1] "2013-02-08 UTC"
## [1] "2012-12-31 UTC"
## [1] "2008-12-29 UTC"
## [1] "2010-01-03 UTC"
## [1] "2013-02-08 UTC"
## [1] "2013-02-08 09:30:26 UTC"
Sometimes one has to work with a large number of dates, in arbitrary formats. It is of impossible to reliably guess the format of some dates, because of ambiguity. But it is often not critical to get the date exactly right in the ambiguous cases, and this is when the parse_date
function is useful. It tries a large number of formats, here is the algorithm is uses:
parse_iso_8601
.as.POSIXct
. (It is unlikely that this step will parse any dates that the first two steps couldn’t, but it is still a logical fallback, to make sure that we can parse at least as many dates as as.POSIXct
.Here are some examples. The first ones are easy.
## [1] "2014-12-12 UTC"
## [1] "1999-04-15 UTC"
## [1] "1999-04-15 UTC"
The following formats are ambiguous and are parsed as month/day/year.
## [1] "1999-12-11 UTC"
## [1] "1999-11-12 UTC"
## [1] "2022-03-20 UTC"
## [1] "2022-01-12 UTC"
But not for this, because this is ISO 8601.
## [1] "2014-01-01 UTC"
The format_iso_8601
function formats a date (and time) in a fixed format that is ISO 8601 valid, and can be used to compare dates as character strings. It converts the date(s) to UTC.
## [1] "2013-02-08T00:00:00+00:00"
## [1] "2013-02-08T09:34:00+00:00"
## [1] "2013-02-08T08:34:00+00:00"
## [1] "2013-02-08T00:00:00+00:00"
## [1] "2013-02-08T00:00:00+00:00"