calendar_group | R Documentation |
calendar_group()
groups at a multiple of the specified precision. Grouping
alters the value of a single component (i.e. the month component
if grouping by month). Components that are more precise than the precision
being grouped at are dropped altogether (i.e. the day component is dropped
if grouping by month).
Each calendar has its own help page describing the grouping process in more detail:
year-month-day
year-month-weekday
year-week-day
iso-year-week-day
year-quarter-day
year-day
calendar_group(x, precision, ..., n = 1L)
x |
A calendar vector. |
precision |
A precision. Allowed precisions are dependent on the calendar used. |
... |
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
.
# See the calendar specific help pages for more examples
x <- year_month_day(2019, c(1, 1, 2, 2, 3, 3, 4, 4), 1:8)
x
# Group by two months
calendar_group(x, "month", n = 2)
# Group by two days of the month
calendar_group(x, "day", n = 2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.