refactor: Remove/reorder levels

refactorR Documentation

Remove/reorder levels

Description

Remove/reorder levels

Usage

refactor(x, levs = levels(x), repl = NA)

Arguments

x

Character or Factor

levs

Set of levels to use

repl

String (or NA) used to replace missing levels

Details

Keep only a specific set of levels in a factor. By removing levels the base for comparison in, e.g., regression analysis, becomes the first level. To relabel the base use, for example, repl = 'other'

Examples

refactor(diamonds$cut, c("Premium", "Ideal")) %>% head()
refactor(diamonds$cut, c("Premium", "Ideal"), "Other") %>% head()


radiant-rstats/radiant.data documentation built on Jan. 19, 2024, 12:21 p.m.