update_list
From purrr v0.2.2.2
by Lionel Henry
Modify a list
Modify a list
Usage
update_list(`_data`, ...)
Arguments
- _data
A list.
- ...
New values of a list. Use
NULL
to remove values. Use a formula to evaluate in the context of the list values.
Examples
# NOT RUN {
x <- list(x = 1:10, y = 4)
update_list(x, z = 10)
update_list(x, z = ~ x + y)
# }
Community examples
Looks like there are no examples yet.