powered by
This family of functions changes only the order of the levels.
fct_inorder(): by the order in which they first appear.
fct_inorder()
fct_infreq(): by number of observations with each level (largest first)
fct_infreq()
fct_inseq(): by numeric value of level.
fct_inseq()
fct_inorder(f, ordered = NA)fct_infreq(f, ordered = NA)fct_inseq(f, ordered = NA)
fct_infreq(f, ordered = NA)
fct_inseq(f, ordered = NA)
A factor
A logical which determines the "ordered" status of the output factor. NA preserves the existing status of the factor.
NA
f <- factor(c("b", "b", "a", "c", "c", "c")) f fct_inorder(f) fct_infreq(f) f <- factor(1:3, levels = c("3", "2", "1")) f fct_inseq(f)
Run the code above in your browser using DataLab