% as_tibble() %>% filter( any(-6ren">
gpt4 book ai didi

r - 在 dplyr 过滤器中使用 "any"运算符

转载 作者:行者123 更新时间:2023-12-05 05:13:55 25 4
gpt4 key购买 nike

我正在尝试在 dplyr 包中的“过滤器”中使用“任何”运算符像这样:

 library(tidyverse)

iris %>%
as_tibble() %>%
filter( any(Species == "setosa",
Species == "versicolor") )

# A tibble: 150 x 5
Sepal.Length Sepal.Width Petal.Length Petal.Width Species
<dbl> <dbl> <dbl> <dbl> <fct>
1 5.1 3.5 1.4 0.2 setosa
2 4.9 3 1.4 0.2 setosa
3 4.7 3.2 1.3 0.2 setosa
4 4.6 3.1 1.5 0.2 setosa
5 5 3.6 1.4 0.2 setosa
6 5.4 3.9 1.7 0.4 setosa
7 4.6 3.4 1.4 0.3 setosa
8 5 3.4 1.5 0.2 setosa
9 4.4 2.9 1.4 0.2 setosa
10 4.9 3.1 1.5 0.1 setosa
# ... with 140 more rows

由于某种原因,过滤器被忽略了,因为 iris 包含 150 行。

但是当“|”使用运算符返回正确的行数:

 library(tidyverse)

iris %>%
as_tibble() %>%
filter( Species == "setosa" |
Species == "versicolor" )

# A tibble: 100 x 5
Sepal.Length Sepal.Width Petal.Length Petal.Width Species
<dbl> <dbl> <dbl> <dbl> <fct>
1 5.1 3.5 1.4 0.2 setosa
2 4.9 3 1.4 0.2 setosa
3 4.7 3.2 1.3 0.2 setosa
4 4.6 3.1 1.5 0.2 setosa
5 5 3.6 1.4 0.2 setosa
6 5.4 3.9 1.7 0.4 setosa
7 4.6 3.4 1.4 0.3 setosa
8 5 3.4 1.5 0.2 setosa
9 4.4 2.9 1.4 0.2 setosa
10 4.9 3.1 1.5 0.1 setosa
# ... with 90 more rows

是否可以使用带有 dplyr 过滤器的“any”运算符使代码工作?

拉斐尔

最佳答案

any 在您的代码中有什么作用?我想你只是想要

… %>% filter(Species == "setosa" | Species == "versicolor")

或者

… %>% filter(Species %in% c("setosa", "versicolor"))

无论哪种情况,filter 中的表达式都会返回一个与数据框中的行相对应的向量。相比之下,any 返回一个单个 值,TRUEFALSE,因此它将过滤所有 行,或者没有。

关于r - 在 dplyr 过滤器中使用 "any"运算符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53080811/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com