Nothing
#' @include utilities.R
NULL
#' Overlay Normal Density Plot
#'
#' @description Overlay normal density plot (with the same mean and SD) to the
#' density distribution of 'x'. This is useful for visually inspecting the
#' degree of deviance from normality.
#' @inheritParams ggplot2::layer
#' @param ... other arguments to pass to \code{\link[ggplot2:geom_path]{geom_line}}.
#' @param na.rm If FALSE (the default), removes missing values with a warning.
#' If TRUE silently removes missing values.
#' @seealso \code{\link{ggdensity}}
#' @examples
#' # Simpledensity plot
#' data("mtcars")
#' ggdensity(mtcars, x = "mpg", fill = "red") +
#' scale_x_continuous(limits = c(-1, 50)) +
#' stat_overlay_normal_density(color = "red", linetype = "dashed")
#'
#' # Color by groups
#' data(iris)
#' ggdensity(iris, "Sepal.Length", color = "Species") +
#' stat_overlay_normal_density(aes(color = Species), linetype = "dashed")
#'
#'
#' # Facet
#' ggdensity(iris, "Sepal.Length", facet.by = "Species") +
#' stat_overlay_normal_density(color = "red", linetype = "dashed")
#'
#' @export
stat_overlay_normal_density <- function(mapping = NULL, data = NULL, geom = "line",
position = "identity", na.rm = FALSE, show.legend = NA,
inherit.aes = TRUE, ...) {
if(is.null(mapping)){
mapping <- ggplot2::aes(y = NULL)
}else{
mapping["y"] <- list(NULL)
}
layer(
stat = StatOverlayNormalDensity, data = data, mapping = mapping, geom = geom,
position = position, show.legend = show.legend, inherit.aes = inherit.aes,
params = list(na.rm = na.rm, ...)
)
}
StatOverlayNormalDensity<- ggproto("StatOverlayNormalDensity", Stat,
required_aes = c("x"),
compute_group = function(data, scales) {
x <- data$x
.mean <- mean(x, na.rm = TRUE)
.sd <- stats::sd(x, na.rm = TRUE)
probability.points <- stats::ppoints(length(x[!(is.na(x))]))
res.density <- stats::density(stats::qnorm(probability.points, .mean, .sd))
res.density <- data.frame(x = res.density$x, y = res.density$y)
res.density
}
)
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.