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


R forcats fct_unify 統一因子列表中的水平


統一因子列表中的水平

用法

fct_unify(fs, levels = lvls_union(fs))

參數

fs

因子清單

levels

適用於每個因子的一組級別。默認為所有因子水平的並集

例子

fs <- list(factor("a"), factor("b"), factor(c("a", "b")))
fct_unify(fs)
#> [[1]]
#> [1] a
#> Levels: a b
#> 
#> [[2]]
#> [1] b
#> Levels: a b
#> 
#> [[3]]
#> [1] a b
#> Levels: a b
#> 
源代碼:R/c.R

相關用法


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