| year-month-weekday-widen {clock} | R Documentation |
This is a year-month-weekday method for the calendar_widen() generic. It
widens a year-month-weekday vector to the specified precision.
## S3 method for class 'clock_year_month_weekday' calendar_widen(x, precision)
x |
A year-month-weekday vector. |
precision |
One of:
|
Widening a month precision year-month-weekday to day precision will set
the day and the index to 1. This sets the weekday components to the
first Sunday of the month.
x widened to the supplied precision.
# Month precision x <- year_month_weekday(2019, 1) x # Widen to day precision # Note that this sets both the day and index to 1, # i.e. the first Sunday of the month. calendar_widen(x, "day") # Or second precision sec <- calendar_widen(x, "second") sec