Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

modify_in

Modify a pluck location


Description

  • assign_in() takes a data structure and a pluck location, assigns a value there, and returns the modified data structure.

  • modify_in() applies a function to a pluck location, assigns the result back to that location with assign_in(), and returns the modified data structure.

The pluck location must exist.

Usage

modify_in(.x, .where, .f, ...)

assign_in(x, where, value)

Arguments

.x

A vector or environment

.where, where

A pluck location, as a numeric vector of positions, a character vector of names, or a list combining both. The location must exist in the data structure.

.f

A function to apply at the pluck location given by .where.

...

Arguments passed to .f.

x

A vector or environment

value

A value to replace in .x at the pluck location.

See Also

Examples

# Recall that pluck() returns a component of a data structure that
# might be arbitrarily deep
x <- list(list(bar = 1, foo = 2))
pluck(x, 1, "foo")

# Use assign_in() to modify the pluck location:
assign_in(x, list(1, "foo"), 100)

# modify_in() applies a function to that location and update the
# element in place:
modify_in(x, list(1, "foo"), ~ .x * 200)

# Additional arguments are passed to the function in the ordinary way:
modify_in(x, list(1, "foo"), `+`, 100)

purrr

Functional Programming Tools

v0.3.4
GPL-3 | file LICENSE
Authors
Lionel Henry [aut, cre], Hadley Wickham [aut], RStudio [cph, fnd]
Initial release

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.