Nothing
#' Cut a Numeric Variable to a Factor
#'
#' @description
#'
#' `cutfac` acts like \code{\link[base]{cut}}, dividing the range of
#' `x` into intervals and coding the values in `x` according in which
#' interval they fall. However, it gives nicer labels for the factor levels and
#' by default chooses convenient breaks among the values based on deciles.
#'
#' It is particularly useful for plots in which one wants to make a numeric
#' variable discrete for the purpose of getting boxplots, spinograms or mosaic
#' plots.
#'
#' @details
#' By default, \code{\link[base]{cut}} chooses breaks by equal lengths of the
#' range of `x`, whereas `cutfac` uses \code{\link[stats]{quantile}}
#' to choose breaks of roughly equal count.
#'
#' @param x a numeric vector which is to be converted to a factor by cutting
#' @param breaks either a numeric vector of two or more unique cut points or a
#' single number (greater than or equal to 2) giving the number of intervals
#' into which `x` is to be cut.
#' @param q the number of quantile groups used to define `breaks`, if that
#' has not been specified.
#'
#' @return A \code{\link[base]{factor}} corresponding to `x` is returned
#'
#' @author Achim Zeileis
#'
#' @seealso \code{\link[base]{cut}}, \code{\link[stats]{quantile}}
#'
#' @references
#' Friendly, M. and Meyer, D. (2016). *Discrete Data Analysis
#' with R: Visualization and Modeling Techniques for Categorical and Count
#' Data*. Boca Raton, FL: Chapman & Hall/CRC. <http://ddar.datavis.ca>.
#' @keywords manip
#' @examples
#'
#' if (require(AER)) {
#' data("NMES1988", package="AER")
#' nmes <- NMES1988[, c(1, 6:8, 13, 15, 18)]
#'
#' plot(log(visits+1) ~ cutfac(chronic),
#' data = nmes,
#' ylab = "Physician office visits (log scale)",
#' xlab = "Number of chronic conditions", main = "chronic")
#'
#' plot(log(visits+1) ~ cutfac(hospital, c(0:2, 8)),
#' data = nmes,
#' ylab = "Physician office visits (log scale)",
#' xlab = "Number of hospital stays", main = "hospital")
#' }
#'
#' data("CrabSatellites", package = "vcdExtra")
#'
#' # jittered scatterplot
#' plot(jitter(satellites) ~ width, data=CrabSatellites,
#' ylab="Number of satellites (jittered)",
#' xlab="Carapace width",
#' cex.lab=1.25)
#' with(CrabSatellites,
#' lines(lowess(width, satellites), col="red", lwd=2))
#'
#' # boxplot, using deciles
#' plot(satellites ~ cutfac(width), data=CrabSatellites,
#' ylab="Number of satellites",
#' xlab="Carapace width (deciles)")
#'
#'
#'
#' @export cutfac
cutfac <- function(x, breaks = NULL, q=10) {
if(is.null(breaks)) breaks <- unique(quantile(x, 0:q/q))
x <- cut(x, breaks, include.lowest = TRUE, right = FALSE)
levels(x) <- paste(breaks[-length(breaks)], ifelse(diff(breaks) > 1,
c(paste("-", breaks[-c(1, length(breaks))] - 1, sep = ""), "+"), ""), sep = "")
return(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.