year-week-day-arithmetic | R Documentation |
These are year-week-day methods for the arithmetic generics.
add_years()
You cannot add weeks or days to a year-week-day calendar. Adding
days is much more efficiently done by converting to a time point first
by using as_naive_time()
or as_sys_time()
. Adding weeks is equally
as efficient as adding 7 days. Additionally, adding weeks to an invalid
year-week object (i.e. one set to the 53rd week, when that doesn't exist)
would be undefined.
## S3 method for class 'clock_year_week_day'
add_years(x, n, ...)
x |
A year-week-day vector. |
n |
An integer vector to be converted to a duration, or a duration
corresponding to the arithmetic function being used. This corresponds
to the number of duration units to add. |
... |
These dots are for future extensions and must be empty. |
x
and n
are recycled against each other using
tidyverse recycling rules.
x
after performing the arithmetic.
x <- year_week_day(2019, 1, 1)
add_years(x, 1:2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.