stats (version 3.6.2)

relevel: Reorder Levels of Factor

Description

The levels of a factor are re-ordered so that the level specified by ref is first and the others are moved down. This is useful for contr.treatment contrasts which take the first level as the reference.

Usage

relevel(x, ref, …)

Arguments

x

an unordered factor.

ref

the reference level, typically a string.

additional arguments for future methods.

Value

A factor of the same length as x.

Details

This, as reorder(), is a special case of simply calling factor(x, levels = levels(x)[....]).

See Also

factor, contr.treatment, levels, reorder.

Examples

Run this code
# NOT RUN {
warpbreaks$tension <- relevel(warpbreaks$tension, ref = "M")
summary(lm(breaks ~ wool + tension, data = warpbreaks))
# }

Run the code above in your browser using DataCamp Workspace