as_vector {purrr} | R Documentation |
Coerce a list to a vector
Description
These functions were superseded in purrr 1.0.0 in favour of
list_simplify()
which has more consistent semantics based on vctrs
principles:
-
as_vector(x)
is nowlist_simplify(x)
-
simplify(x)
is nowlist_simplify(x, strict = FALSE)
-
simplify_all(x)
ismap(x, list_simplify, strict = FALSE)
Superseded functions will not go away, but will only receive critical bug fixes.
Usage
as_vector(.x, .type = NULL)
simplify(.x, .type = NULL)
simplify_all(.x, .type = NULL)
Arguments
.x |
A list of vectors |
.type |
Can be a vector mold specifying both the type and the
length of the vectors to be concatenated, such as |
Examples
# was
as.list(letters) |> as_vector("character")
# now
as.list(letters) |> list_simplify(ptype = character())
# was:
list(1:2, 3:4, 5:6) |> as_vector(integer(2))
# now:
list(1:2, 3:4, 5:6) |> list_c(ptype = integer())
[Package purrr version 1.0.1 Index]