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


R purrr detect 查找第一个匹配的值或位置


查找第一个匹配的值或位置

用法

detect(
  .x,
  .f,
  ...,
  .dir = c("forward", "backward"),
  .right = NULL,
  .default = NULL
)

detect_index(.x, .f, ..., .dir = c("forward", "backward"), .right = NULL)

参数

.x

列表或向量。

.f

一个函数,通过以下方式之一指定:

  • 命名函数,例如mean

  • 匿名函数,例如\(x) x + 1function(x) x + 1

  • 一个公式,例如~ .x + 1 。您必须使用.x 来引用第一个参数。仅当您需要向后兼容旧版本的 R 时才推荐。

  • 字符串、整数或列表,例如"idx"1list("idx", 1) 分别是 \(x) pluck(x, "idx")\(x) pluck(x, 1)\(x) pluck(x, "idx", 1) 的简写。如果索引元素为 NULL 或不存在,则可以选择提供 .default 以设置默认值。

...

传递给 .p 的其他参数。

.dir

如果 "forward" (默认值)从向量的开头开始并向结尾移动;如果 "backward" ,则从向量的末尾开始并向开头移动。

.right

[Deprecated]请用.dir反而。

.default

未检测到任何内容时返回的值。

detect第一个与谓词匹配的项的值; detect_index匹配项的位置。如果未找到,detect 返回NULLdetect_index

返回 0。

也可以看看

keep() 用于保留所有匹配值。

例子

is_even <- function(x) x %% 2 == 0

3:10 |> detect(is_even)
#> [1] 4
3:10 |> detect_index(is_even)
#> [1] 2

3:10 |> detect(is_even, .dir = "backward")
#> [1] 10
3:10 |> detect_index(is_even, .dir = "backward")
#> [1] 8


# Since `.f` is passed to as_mapper(), you can supply a
# lambda-formula or a pluck object:
x <- list(
  list(1, foo = FALSE),
  list(2, foo = TRUE),
  list(3, foo = TRUE)
)

detect(x, "foo")
#> [[1]]
#> [1] 2
#> 
#> $foo
#> [1] TRUE
#> 
detect_index(x, "foo")
#> [1] 2


# If you need to find all values, use keep():
keep(x, "foo")
#> [[1]]
#> [[1]][[1]]
#> [1] 2
#> 
#> [[1]]$foo
#> [1] TRUE
#> 
#> 
#> [[2]]
#> [[2]][[1]]
#> [1] 3
#> 
#> [[2]]$foo
#> [1] TRUE
#> 
#> 

# If you need to find all positions, use map_lgl():
which(map_lgl(x, "foo"))
#> [1] 2 3
源代码:R/detect.R

相关用法


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