along
From purrr v0.2.2.2
by Lionel Henry
Helper to create vectors with matching length.
These functions take the idea of seq_along
and generalise
it to creating lists (list_along
) and repeating values
(rep_along
).
Usage
list_along(x)rep_along(x, y)
Arguments
- x
A vector.
- y
Values to repeat.
Examples
# NOT RUN {
x <- 1:5
rep_along(x, 1:2)
rep_along(x, 1)
list_along(x)
# }
Community examples
Looks like there are no examples yet.