powered by
duration_spanning_seq() generates a regular sequence along the span of x, i.e. along [min(x), max(x)].
duration_spanning_seq()
x
[min(x), max(x)]
duration_spanning_seq(x)
A sequence along [min(x), max(x)].
[clock_duration]
A duration vector.
Missing values are automatically removed before the sequence is generated.
If you need more precise sequence generation, call range() and seq() directly.
range()
seq()
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)
Run the code above in your browser using DataLab