duration_spanning_seq {clock} | R Documentation |
Spanning sequence: duration
Description
duration_spanning_seq()
generates a regular sequence along the span of x
,
i.e. along [min(x), max(x)]
.
Usage
duration_spanning_seq(x)
Arguments
x |
A duration vector. |
Details
Missing values are automatically removed before the sequence is generated.
If you need more precise sequence generation, call range()
and seq()
directly.
Value
A sequence along [min(x), max(x)]
.
Examples
x <- duration_days(c(1, 5, 2))
duration_spanning_seq(x)
# Missing values are removed before the sequence is created
x <- vctrs::vec_c(NA, x, NA)
duration_spanning_seq(x)
[Package clock version 0.7.1 Index]