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


R forcats lvls_union 查找因子列表中的所有級別


查找因子列表中的所有級別

用法

lvls_union(fs)

參數

fs

因子列表。

例子

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

相關用法


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