year-week-day-group | R Documentation |
This is a year-week-day method for the calendar_group()
generic.
Grouping for a year-week-day object can be done at any precision, as
long as x
is at least as precise as precision
.
## S3 method for class 'clock_year_week_day'
calendar_group(x, precision, ..., n = 1L)
x |
A year-week-day vector. |
precision |
One of:
|
... |
These dots are for future extensions and must be empty. |
n |
A single positive integer specifying a multiple of |
x
grouped at the specified precision
.
x <- year_week_day(2019, 1:52)
# Group by 3 weeks
calendar_group(x, "week", n = 3)
y <- year_week_day(2000:2020, 1, 1)
# Group by 2 years
calendar_group(y, "year", n = 2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.