Free Access Week - Data Engineering + BI
Data Engineering and BI courses are free this week!
Free Access Week - Jun 2-8

purrr (version 0.2.1)

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
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 DataLab