Nothing
#' Mosaic plots.
#'
#' @export
#'
#' @description
#' A mosaic plot is a convenient graphical summary of the conditional distributions
#' in a contingency table and is composed of spines in alternating directions.
#'
#'
#' @inheritParams ggplot2::layer
#' @param divider Divider function. The default divider function is mosaic() which will use spines in alternating directions. The four options for partitioning:
#' \itemize{
#' \item \code{vspine} Vertical spine partition: width constant, height varies.
#' \item \code{hspine} Horizontal spine partition: height constant, width varies.
#' \item \code{vbar} Vertical bar partition: height constant, width varies.
#' \item \code{hbar} Horizontal bar partition: width constant, height varies.
#' }
#' @param offset Set the space between the first spine
#' @param na.rm If \code{FALSE} (the default), removes missing values with a warning. If \code{TRUE} silently removes missing values.
#' @param ... other arguments passed on to \code{layer}. These are often aesthetics, used to set an aesthetic to a fixed value, like \code{color = 'red'} or \code{size = 3}. They may also be parameters to the paired geom/stat.
#' @examples
#'
#' data(titanic)
#'
#' ggplot(data = titanic) +
#' geom_mosaic(aes(x = product(Class), fill = Survived))
#' # good practice: use the 'dependent' variable (or most important variable)
#' # as fill variable
#'
#' ggplot(data = titanic) +
#' geom_mosaic(aes(x = product(Class, Age), fill = Survived))
#'
#' ggplot(data = titanic) +
#' geom_mosaic(aes(x = product(Class), conds = product(Age), fill = Survived))
#'
#' ggplot(data = titanic) +
#' geom_mosaic(aes(x = product(Survived, Class), fill = Age))
#'
#' # Just excluded for timing. Examples are included in testing to make sure they work
#' \dontrun{
#' data(happy)
#'
#' ggplot(data = happy) + geom_mosaic(aes(x = product(happy)), divider="hbar")
#'
#' ggplot(data = happy) + geom_mosaic(aes(x = product(happy))) +
#' coord_flip()
#'
#' # weighting is important
#' ggplot(data = happy) +
#' geom_mosaic(aes(weight=wtssall, x=product(happy)))
#'
#' ggplot(data = happy) + geom_mosaic(aes(weight=wtssall, x=product(health), fill=happy)) +
#' theme(axis.text.x=element_text(angle=35))
#'
#' ggplot(data = happy) +
#' geom_mosaic(aes(weight=wtssall, x=product(health), fill=happy), na.rm=TRUE)
#'
#' ggplot(data = happy) +
#' geom_mosaic(aes(weight=wtssall, x=product(health, sex, degree), fill=happy),
#' na.rm=TRUE)
#'
#' # here is where a bit more control over the spacing of the bars is helpful:
#' # set labels manually:
#' ggplot(data = happy) +
#' geom_mosaic(aes(weight=wtssall, x=product(age), fill=happy), na.rm=TRUE, offset=0) +
#' scale_x_productlist("Age", labels=c(17+1:72))
#'
#' # thin out labels manually:
#' labels <- c(17+1:72)
#' labels[labels %% 5 != 0] <- ""
#' ggplot(data = happy) +
#' geom_mosaic(aes(weight=wtssall, x=product(age), fill=happy), na.rm=TRUE, offset=0) +
#' scale_x_productlist("Age", labels=labels)
#'
#' ggplot(data = happy) +
#' geom_mosaic(aes(weight=wtssall, x=product(age), fill=happy, conds = product(sex)),
#' divider=mosaic("v"), na.rm=TRUE, offset=0.001) +
#' scale_x_productlist("Age", labels=labels)
#'
#' ggplot(data = happy) +
#' geom_mosaic(aes(weight=wtssall, x=product(age), fill=happy), na.rm=TRUE, offset = 0) +
#' facet_grid(sex~.) +
#' scale_x_productlist("Age", labels=labels)
#'
#' ggplot(data = happy) +
#' geom_mosaic(aes(weight = wtssall, x = product(happy, finrela, health)),
#' divider=mosaic("h"))
#'
#' ggplot(data = happy) +
#' geom_mosaic(aes(weight = wtssall, x = product(happy, finrela, health)), offset=.005)
#'
#' # Spine example
#' ggplot(data = happy) +
#' geom_mosaic(aes(weight = wtssall, x = product(health), fill = health)) +
#' facet_grid(happy~.)
#' } # end of don't run
geom_mosaic <- function(mapping = NULL, data = NULL, stat = "mosaic",
position = "identity", na.rm = FALSE, divider = mosaic(), offset = 0.01,
show.legend = NA, inherit.aes = FALSE, ...)
{
if (!is.null(mapping$y)) {
stop("stat_mosaic() must not be used with a y aesthetic.", call. = FALSE)
} else mapping$y <- structure(1L, class = "productlist")
#browser()
aes_x <- mapping$x
if (!is.null(aes_x)) {
aes_x <- rlang::eval_tidy(mapping$x)
var_x <- paste0("x__", as.character(aes_x))
}
aes_fill <- mapping$fill
var_fill <- ""
if (!is.null(aes_fill)) {
aes_fill <- rlang::quo_text(mapping$fill)
var_fill <- paste0("x__fill__", aes_fill)
if (aes_fill %in% as.character(aes_x)) {
idx <- which(aes_x == aes_fill)
var_x[idx] <- var_fill
} else {
mapping[[var_fill]] <- mapping$fill
}
}
aes_alpha <- mapping$alpha
var_alpha <- ""
if (!is.null(aes_alpha)) {
aes_alpha <- rlang::quo_text(mapping$alpha)
var_alpha <- paste0("x__alpha__", aes_alpha)
if (aes_alpha %in% as.character(aes_x)) {
idx <- which(aes_x == aes_alpha)
var_x[idx] <- var_alpha
} else {
mapping[[var_alpha]] <- mapping$alpha
}
}
# aes_x <- mapping$x
if (!is.null(aes_x)) {
mapping$x <- structure(1L, class = "productlist")
for (i in seq_along(var_x)) {
mapping[[var_x[i]]] <- aes_x[[i]]
}
}
aes_conds <- mapping$conds
if (!is.null(aes_conds)) {
aes_conds <- rlang::eval_tidy(mapping$conds)
mapping$conds <- structure(1L, class = "productlist")
var_conds <- paste0("conds", seq_along(aes_conds), "__", as.character(aes_conds))
for (i in seq_along(var_conds)) {
mapping[[var_conds[i]]] <- aes_conds[[i]]
}
}
ggplot2::layer(
data = data,
mapping = mapping,
stat = stat,
geom = GeomMosaic,
position = position,
show.legend = show.legend,
check.aes = FALSE,
inherit.aes = FALSE, # only FALSE to turn the warning off
params = list(
na.rm = na.rm,
divider = divider,
offset = offset,
...
)
)
}
#' Geom proto
#'
#' @format NULL
#' @usage NULL
#' @export
#' @importFrom grid grobTree
GeomMosaic <- ggplot2::ggproto(
"GeomMosaic", ggplot2::Geom,
setup_data = function(data, params) {
#cat("setup_data in GeomMosaic\n")
#browser()
data
},
required_aes = c("xmin", "xmax", "ymin", "ymax"),
default_aes = ggplot2::aes(width = 0.75, linetype = "solid", fontsize=5,
shape = 19, colour = NA,
size = .1, fill = "grey30", alpha = .8, stroke = 0.1,
linewidth=.1, weight = 1, x = NULL, y = NULL, conds = NULL),
draw_panel = function(data, panel_scales, coord) {
#cat("draw_panel in GeomMosaic\n")
#browser()
if (all(is.na(data$colour)))
data$colour <- scales::alpha(data$fill, data$alpha) # regard alpha in colour determination
GeomRect$draw_panel(subset(data, level==max(data$level)), panel_scales, coord)
},
check_aesthetics = function(x, n) {
#browser()
ns <- vapply(x, length, numeric(1))
good <- ns == 1L | ns == n
if (all(good)) {
return()
}
stop(
"Aesthetics must be either length 1 or the same as the data (", n, "): ",
paste(names(!good), collapse = ", "),
call. = FALSE
)
},
draw_key = ggplot2::draw_key_polygon
)
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.