Skip to contents

ISO year and week (character) from Date object

Usage

date_to_isoyearweek_c(x = lubridate::today())

# S3 method for default
date_to_isoyearweek_c(x)

# S3 method for character
date_to_isoyearweek_c(x = lubridate::today())

# S3 method for Date
date_to_isoyearweek_c(x = lubridate::today())

Arguments

x

a Date object or string, in the form of 'yyyy-mm-dd'

Value

ISO year and week in character

Examples

date_to_isoyearweek_c("2021-08-11")
#> [1] "2021-32"
date_to_isoyearweek_c(lubridate::today())
#> [1] "2023-52"