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


R forcats fct_unique 一個因子的唯一值,作為一個因子


fct_unique() 從因子的級別中提取完整的可能值集,而不是像 unique() 那樣查看實際值。

fct_unique() 僅以一種方式使用 f 的值:它查找隱式缺失值,以便將它們包含在結果中。

用法

fct_unique(f)

參數

f

一個因子。

一個因子。

例子

f <- fct(letters[rpois(100, 10)])
unique(f)     # in order of appearance
#>  [1] l j g n k f m h i p o e u
#> Levels: l j g n k f m h i p o e u
fct_unique(f) # in order of levels
#>  [1] l j g n k f m h i p o e u
#> Levels: l j g n k f m h i p o e u

f <- fct(letters[rpois(100, 2)], letters[1:20])
unique(f)     # levels that appear in data
#> [1] c a b e d h
#> Levels: a b c d e f g h i j k l m n o p q r s t
fct_unique(f) # all possible levels
#>  [1] a b c d e f g h i j k l m n o p q r s t
#> Levels: a b c d e f g h i j k l m n o p q r s t
源代碼:R/unique.R

相關用法


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