purrr (version 0.2.2.2)

update_list: Modify a list

Description

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

Run this code
# NOT RUN {
x <- list(x = 1:10, y = 4)
update_list(x, z = 10)
update_list(x, z = ~ x + y)
# }

Run the code above in your browser using DataCamp Workspace