forcats (version 0.2.0)

fct_collapse: Collapse factor levels into manually defined groups

Description

Collapse factor levels into manually defined groups

Usage

fct_collapse(f, ...)

Arguments

f
A factor
...
A series of named character vectors. The levels in each vector will be replaced with the name.

Examples

Run this code
fct_count(gss_cat$partyid)

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)

Run the code above in your browser using DataLab