along
From purrr v0.2.5
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
).
- Keywords
- internal
Usage
list_along(x)rep_along(x, y)
Arguments
- x
A vector.
- y
Values to repeat.
Value
A vector of the same length as x
.
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.