当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。