Nothing
#' Determines used factor levels.
#'
#' Determines the factor levels of a factor type vector
#' that are actually occuring in it.
#'
#' @param x [\code{factor}]\cr
#' The factor.
#' @return [\code{character}]
#' @export
getUsedFactorLevels = function(x) {
intersect(levels(x), unique(x))
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.