fct_recode 用 NA 替换等级
fct_recode replace level by NA
我正在尝试使用 forcats::fct_recode 将 R 因子变量中的所有“a”替换为 NA 字符。这是我试过的:
fct <- forcats::as_factor(c("a", "b"))
fct %>% forcats::fct_recode("c" = "a") #works
fct %>% forcats::fct_recode(NA = "a") #error
fct %>% forcats::fct_recode(NA_character_ = "a") #error
有没有办法通过 fct_recode 实现我的目标?
您需要使用反引号将值转换为 NA
:
x1 <- fct %>% forcats::fct_recode(`NA` = "a")
x1
#[1] NA b
#Levels: NA b
但是,请注意,虽然这个“看起来”像 NA
,但它不是真实的 NA
。它是字符串 "NA"
.
is.na(x1)
#[1] FALSE FALSE
x1 == 'NA'
#[1] TRUE FALSE
为了让它成为现实 NA
将其替换为 NULL
。
x2 <- fct %>% forcats::fct_recode(NULL = "a")
x2
#[1] <NA> b
#Levels: b
is.na(x2)
#[1] TRUE FALSE
我们可以使用na_if
library(dplyr)
fct %>%
na_if('a') %>%
droplevels
#[1] <NA> b
#Levels: b
我正在尝试使用 forcats::fct_recode 将 R 因子变量中的所有“a”替换为 NA 字符。这是我试过的:
fct <- forcats::as_factor(c("a", "b"))
fct %>% forcats::fct_recode("c" = "a") #works
fct %>% forcats::fct_recode(NA = "a") #error
fct %>% forcats::fct_recode(NA_character_ = "a") #error
有没有办法通过 fct_recode 实现我的目标?
您需要使用反引号将值转换为 NA
:
x1 <- fct %>% forcats::fct_recode(`NA` = "a")
x1
#[1] NA b
#Levels: NA b
但是,请注意,虽然这个“看起来”像 NA
,但它不是真实的 NA
。它是字符串 "NA"
.
is.na(x1)
#[1] FALSE FALSE
x1 == 'NA'
#[1] TRUE FALSE
为了让它成为现实 NA
将其替换为 NULL
。
x2 <- fct %>% forcats::fct_recode(NULL = "a")
x2
#[1] <NA> b
#Levels: b
is.na(x2)
#[1] TRUE FALSE
我们可以使用na_if
library(dplyr)
fct %>%
na_if('a') %>%
droplevels
#[1] <NA> b
#Levels: b