當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


R forcats fct_expand 向因子添加附加級別


向因子添加附加級別

用法

fct_expand(f, ..., after = Inf)

參數

f

因子(或字符向量)。

...

添加到該因子的其他級別。已經存在的級別將被默默地忽略。

after

新值應該放在哪裏?

也可以看看

fct_drop() 刪除未使用的因子級別。

例子

f <- factor(sample(letters[1:3], 20, replace = TRUE))
f
#>  [1] c a b a b b a c c b b b b c c c a b b c
#> Levels: a b c
fct_expand(f, "d", "e", "f")
#>  [1] c a b a b b a c c b b b b c c c a b b c
#> Levels: a b c d e f
fct_expand(f, letters[1:6])
#>  [1] c a b a b b a c c b b b b c c c a b b c
#> Levels: a b c d e f
fct_expand(f, "Z", after = 0)
#>  [1] c a b a b b a c c b b b b c c c a b b c
#> Levels: Z a b c
源代碼:R/expand.R

相關用法


注:本文由純淨天空篩選整理自Hadley Wickham等大神的英文原創作品 Add additional levels to a factor。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。