gdata (version 3.0.0)

drop.levels: Drop unused factor levels

Description

Drop unused levels in a factor

Usage

drop.levels(x, reorder=TRUE, ...)

Value

Input object without unused levels.

Arguments

x

object to be processed

reorder

should factor levels be reordered using reorder.factor?

...

additional arguments to reorder.factor

Author

Jim Rogers james.a.rogers@pfizer.com and Gregor Gorjanc

Details

drop.levels is a generic function, where default method does nothing, while method for factor s drops all unused levels. Drop is done with x[, drop=TRUE].

There are also convenient methods for list and data.frame, where all unused levels are dropped in all factors (one by one) in a list or a data.frame.

Examples

Run this code
f <- factor(c("A", "B", "C", "D"))[1:3]
drop.levels(f)

l <- list(f=f, i=1:3, c=c("A", "B", "D"))
drop.levels(l)

df <- as.data.frame(l)
str(df)
str(drop.levels(df))

Run the code above in your browser using DataLab