unsortedFactor {Orcs} | R Documentation |
Factor with Unsorted Levels
Description
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.
Usage
unsortedFactor(x, ...)
Arguments
x |
A |
... |
Additional arguments passed to |
Author(s)
Florian Detsch
Examples
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)
[Package Orcs version 1.2.3 Index]