ISO week (character) from Date object
date_to_isoweek_c(x = lubridate::today())
# Default S3 method
date_to_isoweek_c(x)
# S3 method for class 'character'
date_to_isoweek_c(x = lubridate::today())
# S3 method for class 'Date'
date_to_isoweek_c(x = lubridate::today())
Arguments
- x
a Date object or string, in the form of 'yyyy-mm-dd'
Value
ISO week in character
Examples
date_to_isoweek_c("2021-08-11")
#> [1] "32"
date_to_isoweek_c(lubridate::today())
#> [1] "52"