forcats (version 0.3.0)

fct_inorder: Reorder factors levels by first appearance or frequency

Description

Reorder factors levels by first appearance or frequency

Usage

fct_inorder(f, ordered = NA)

fct_infreq(f, ordered = NA)

Arguments

f

A factor

ordered

A logical which determines the "ordered" status of the output factor. NA preserves the existing status of the factor.

Examples

Run this code
# NOT RUN {
f <- factor(c("b", "b", "a", "c", "c", "c"))
f
fct_inorder(f)
fct_infreq(f)

fct_inorder(f, ordered = TRUE)
# }

Run the code above in your browser using DataCamp Workspace