Fast, flexible date and datetime parsing
Significantly faster time series parsing than readr::parse_date
, readr::parse_datetime
,
lubridate::as_date()
, and lubridate::as_datetime()
. Uses anytime
package, which relies on
Boost.Date_Time
C++ library for date/datetime parsing.
parse_date2(x, ..., silent = FALSE) parse_datetime2(x, tz = "UTC", tz_shift = FALSE, ..., silent = FALSE)
x |
A character vector |
... |
|
silent |
If |
tz |
Datetime only. A timezone (see |
tz_shift |
Datetime only. If FALSE, forces the datetime into the time zone. If TRUE, offsets the datetime from UTC to the new time zone. |
Parsing Formats
Date Formats: Must follow a Year, Month, Day sequence.
(e.g. parse_date2("2011 June")
is OK, parse_date2("June 2011")
is NOT OK).
Date Time Formats: Must follow a YMD HMS sequence.
Refer to lubridate::mdy()
for Month, Day, Year and additional formats.
Time zones (Datetime)
Time zones are handled in a similar way to lubridate::as_datetime()
in that time zones
are forced rather than shifted. This is a key difference between anytime::anytime()
, which
shifts datetimes to the specified timezone by default.
This function wraps the anytime::anytime()
and anytime::anydate
functions developed by Dirk Eddelbuettel.
# Fast date parsing parse_date2("2011") parse_date2("2011 June 3rd") # Fast datetime parsing parse_datetime2("2011") parse_datetime2("2011 Jan 1 12:35:21") # Time Zones (datetime only) parse_datetime2("2011 Jan 1 12:35:21", tz = "GB")
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.