levels2 | R Documentation |
Extension of levels()
function. If levels(x)
is not NULL
, it is
returned. Otherwise, character representation of unique sorted values is
returned (with NA
treated based on na.last
as in sort()
).
levels2(x, na.last = TRUE)
x |
An object of interest. |
na.last |
Argument for controlling the treatment of |
fac_vec <- factor(c("a", "b"), levels = c("a", "b", "c")) levels2(fac_vec) levels2(c(10, 1, 2, NA, 11))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.