
Available date formats for autoparse_dates function
Source: R/autoparse_dates.R
available_date_formats.RdA character vector containing all supported date formats that can be parsed
by autoparse_dates(). These formats follow standard date-time components:
d: day
m: month
Y/y: year (Y=4 digits, y=2 digits)
B: full month name
b: abbreviated month name
H: hour
M: minute
S: second
Examples
head(available_date_formats)
#> [1] "dmY" "mdY" "Ymd" "Ydm" "dmy" "mdy"