fct_inorder {forcats} | R Documentation |
Reorder factors levels by first appearance or frequency
fct_inorder(f, ordered = NA) fct_infreq(f, ordered = NA)
f |
A factor |
ordered |
A logical which determines the "ordered" status of the
output factor. |
f <- factor(c("b", "b", "a", "c", "c", "c")) f fct_inorder(f) fct_infreq(f) fct_inorder(f, ordered = TRUE)