This is a year-week-day method for the calendar_widen()
generic. It
widens a year-week-day vector to the specified precision
.
Usage
# S3 method for class 'clock_year_week_day'
calendar_widen(x, precision)
Examples
# Week precision
x <- year_week_day(2019, 1, start = clock_weekdays$monday)
x
#> <year_week_day<Monday><week>[1]>
#> [1] "2019-W01"
# Widen to day precision
# In this calendar, the first day of the week is a Monday
calendar_widen(x, "day")
#> <year_week_day<Monday><day>[1]>
#> [1] "2019-W01-1"
# Or second precision
sec <- calendar_widen(x, "second")
sec
#> <year_week_day<Monday><second>[1]>
#> [1] "2019-W01-1T00:00:00"