Lui*_*igo 5 r dplyr tidyverse rlang
我需要通过逻辑列过滤表(或者更确切地说,通过它的否定),但列的名称可能会有所不同.我事先知道他们的名字很容易:
tb = tibble(
id = 1:4,
col1 = c(TRUE, TRUE, FALSE, FALSE),
col2 = c(TRUE, FALSE, TRUE, FALSE)
)
tb
## # A tibble: 4 x 3
## id col1 col2
## <int> <lgl> <lgl>
## 1 1 TRUE TRUE
## 2 2 TRUE FALSE
## 3 3 FALSE TRUE
## 4 4 FALSE FALSE
colname = quo(col1)
tb %>%
filter(!!colname) # rows where col1 is true
## # A tibble: 2 x 3
## id col1 col2
## <int> <lgl> <lgl>
## 1 1 TRUE TRUE
## 2 2 TRUE FALSE
tb %>%
filter(!(!!colname)) # rows where col1 is false
## # A tibble: 2 x 3
## id col1 col2
## <int> <lgl> <lgl>
## 1 3 FALSE TRUE
## 2 4 FALSE FALSE
colname = quo(col2)
tb %>%
filter(!!colname) # rows where col2 is true
## # A tibble: 2 x 3
## id col1 col2
## <int> <lgl> <lgl>
## 1 1 TRUE TRUE
## 2 3 FALSE TRUE
tb %>%
filter(!(!!colname)) # rows where col2 is false
## # A tibble: 2 x 3
## id col1 col2
## <int> <lgl> <lgl>
## 1 2 TRUE FALSE
## 2 4 FALSE FALSE
Run Code Online (Sandbox Code Playgroud)
但是,当列名存储在字符串中时,我无法弄清楚如何做同样的事情.例如:
colname = "col1"
tb %>%
filter(!!colname)
## Error in filter_impl(.data, quo): Argument 2 filter condition does not evaluate to a logical vector
colname = quo("col1")
tb %>%
filter(!!colname)
## Error in filter_impl(.data, quo): Argument 2 filter condition does not evaluate to a logical vector
colname = quo(parse(text = "col1"))
tb %>%
filter(!!colname)
## Error in filter_impl(.data, quo): Argument 2 filter condition does not evaluate to a logical vector
Run Code Online (Sandbox Code Playgroud)
所以,问题是,我应该怎么做?
编辑:这不是这个问题的重复,因为从那时起用dplyr进行非标准评估的首选方法已经改变._中终止的所有函数现已弃用,现在建议使用整洁的评估框架.
我们可以使用symfrom rlang来评估字符串
library(rlang)
library(dplyr)
colname <- "col1"
tb %>%
filter(!!sym(colname))
# A tibble: 2 x 3
# id col1 col2
# <int> <lgl> <lgl>
#1 1 TRUE TRUE
#2 2 TRUE FALSE
Run Code Online (Sandbox Code Playgroud)