View source: R/unsortedFactor.R
unsortedFactor | R Documentation |
Casting factor()
upon a (character
) vector usually results in
alphabetically ordered factor levels. Although this seems reasonable in most
cases, the automated ordering of factor levels is seldomly desirable in the
context of visualization, e.g. when working with tiled lattice or
ggplot2 figures. This function returns a factor
with levels ordered
according to their first appearance in the supplied vector.
unsortedFactor(x, ...)
x |
A |
... |
Additional arguments passed to |
Florian Detsch
mnth <- month.abb ## factor levels are being sorted fc_mnth <- factor(mnth) levels(fc_mnth) ## factor levels remain unsorted fc_mnth2 <- unsortedFactor(mnth) levels(fc_mnth2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.