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


R forcats fct_collapse 将因子级别折叠为手动定义的组


将因子级别折叠为手动定义的组

用法

fct_collapse(.f, ..., other_level = NULL, group_other = "DEPRECATED")

参数

.f

因子(或字符向量)。

...

< dynamic-dots > 一系列命名字符向量。每个向量中的级别将替换为名称。

other_level

用于 "other" 值的级别值。始终放置在关卡末尾。

group_other

已弃用。将 ... 中未命名的所有级别替换为 "Other"?

例子

fct_count(gss_cat$partyid)
#> # A tibble: 10 × 2
#>    f                      n
#>    <fct>              <int>
#>  1 No answer            154
#>  2 Don't know             1
#>  3 Other party          393
#>  4 Strong republican   2314
#>  5 Not str republican  3032
#>  6 Ind,near rep        1791
#>  7 Independent         4119
#>  8 Ind,near dem        2499
#>  9 Not str democrat    3690
#> 10 Strong democrat     3490

partyid2 <- fct_collapse(gss_cat$partyid,
  missing = c("No answer", "Don't know"),
  other = "Other party",
  rep = c("Strong republican", "Not str republican"),
  ind = c("Ind,near rep", "Independent", "Ind,near dem"),
  dem = c("Not str democrat", "Strong democrat")
)
fct_count(partyid2)
#> # A tibble: 5 × 2
#>   f           n
#>   <fct>   <int>
#> 1 missing   155
#> 2 other     393
#> 3 rep      5346
#> 4 ind      8409
#> 5 dem      7180
源代码:R/collapse.R

相关用法


注:本文由纯净天空筛选整理自Hadley Wickham等大神的英文原创作品 Collapse factor levels into manually defined groups。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。