Skip to contents

A 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

Usage

available_date_formats

Format

A character vector of date format strings

Examples

head(available_date_formats)
#> [1] "dmY" "mdY" "Ymd" "Ydm" "dmy" "mdy"