View source: R/week-year-week-day.R
seq.clock_year_week_day | R Documentation |
This is a year-week-day method for the seq()
generic.
Sequences can only be generated for "year"
precision
year-week-day vectors. If you need to generate week-based sequences,
you'll have to convert to a time point first.
When calling seq()
, exactly two of the following must be specified:
to
by
Either length.out
or along.with
## S3 method for class 'clock_year_week_day'
seq(from, to = NULL, by = NULL, length.out = NULL, along.with = NULL, ...)
from |
A
|
to |
A
|
by |
The unit to increment the sequence by. If If |
length.out |
The length of the resulting sequence. If specified, |
along.with |
A vector who's length determines the length of the resulting sequence. Equivalent to If specified, |
... |
These dots are for future extensions and must be empty. |
A sequence with the type of from
.
# Yearly sequence
x <- seq(year_week_day(2020), year_week_day(2026), by = 2)
x
# Which we can then set the week of.
# Some years have 53 weeks, some have 52.
set_week(x, "last")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.