当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R purrr modify_in 修改拔取位置


  • assign_in() 采用一个数据结构和一个 pluck 位置,在那里分配一个值,然后返回修改后的数据结构。

  • modify_in() 将函数应用于拾取位置,使用 assign_in() 将结果分配回该位置,并返回修改后的数据结构。

用法

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

assign_in(x, where, value)

参数

.x, x

向量或环境

.where, where

弹奏位置,作为位置的数值向量、名称的字符向量或两者组合的列表。该位置必须存在于数据结构中。

.f

.where 给出的拔取位置应用的函数。

...

传递给 .f 的参数。

value

要在 .x 中的拔取位置替换的值。使用 zap() 来删除该元素。

也可以看看

例子

# 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")
#> [1] 2

# Use assign_in() to modify the pluck location:
str(assign_in(x, list(1, "foo"), 100))
#> List of 1
#>  $ :List of 2
#>   ..$ bar: num 1
#>   ..$ foo: num 100
# Or zap to remove it
str(assign_in(x, list(1, "foo"), zap()))
#> List of 1
#>  $ :List of 1
#>   ..$ bar: num 1

# Like pluck(), this works even when the element (or its parents) don't exist
pluck(x, 1, "baz")
#> NULL
str(assign_in(x, list(2, "baz"), 100))
#> List of 2
#>  $ :List of 2
#>   ..$ bar: num 1
#>   ..$ foo: num 2
#>  $ :List of 1
#>   ..$ baz: num 100

# modify_in() applies a function to that location and update the
# element in place:
modify_in(x, list(1, "foo"), \(x) x * 200)
#> [[1]]
#> [[1]]$bar
#> [1] 1
#> 
#> [[1]]$foo
#> [1] 400
#> 
#> 

# Additional arguments are passed to the function in the ordinary way:
modify_in(x, list(1, "foo"), `+`, 100)
#> [[1]]
#> [[1]]$bar
#> [1] 1
#> 
#> [[1]]$foo
#> [1] 102
#> 
#> 
源代码:R/pluck-assign.R

相关用法


注:本文由纯净天空筛选整理自Hadley Wickham等大神的英文原创作品 Modify a pluck location。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。