From Wikipedia, the free encyclopedia
Summary
R code
library(ggplot2)
library(GGally)
library(extrafont)
loadfonts()
ggplot(NULL, aes(c(-4,4))) +
geom_line(stat = "function", fun = dnorm) +
geom_area(stat = "function", fun = dnorm, fill = scales::muted("red"), xlim=c(-1,1), alpha=1/4) +
geom_area(stat = "function", fun = dnorm, fill = scales::muted("red"), xlim=c(-2,2), alpha=1/4) +
geom_area(stat = "function", fun = dnorm, fill = scales::muted("red"), xlim=c(-3,3), alpha=1/4) +
theme_minimal(base_family = "DejaVu Sans") +
theme(axis.text.x = element_text(size = 12)) +
scale_x_continuous(labels = paste0(-4:4, "σ"), breaks = -4:4) +
xlab("Standard Deviations from the Mean") +
ylab("Probability Density") +
geom_segment(aes(x=-1, xend=1, y=dnorm(1), yend=dnorm(1)), linetype="dashed") +
geom_segment(aes(x=-2, xend=2, y=dnorm(2), yend=dnorm(2)), linetype="dashed") +
geom_segment(aes(x=-3, xend=3, y=dnorm(3), yend=dnorm(3)), linetype="dashed") +
annotate("text", x = 0, y = dnorm(1)+0.015, label = "68.3%") + #pnorm(1)-pnorm(-1) %
annotate("text", x = 0, y = dnorm(2)+0.015, label = "95.4%") +
annotate("text", x = 0, y = dnorm(3)+0.015, label = "99.7%") +
x11(width = 7, height = 5)
Licensing
You are free:
to share – to copy, distribute and transmit the work
to remix – to adapt the work
Under the following conditions:
attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original. https://creativecommons.org/licenses/by-sa/4.0 CC BY-SA 4.0 Creative Commons Attribution-Share Alike 4.0 true true English The Standard Normal Probability Distribution with shaded regions
File history
Click on a date/time to view the file as it appeared at that time.
Date/Time Thumbnail Dimensions User Comment
current 08:22, 5 November 2021 651 × 468 (33 KB) Chen-Pan Liao Uploaded a work by D Wells from https://commons.wikimedia.org/wiki/File:Standard_Normal_Distribution.png with UploadWizard
File usage
No pages on the English Wikipedia use this file (pages on other projects are not listed).
This file contains additional information, probably added from the digital camera or scanner used to create or digitize it.
If the file has been modified from its original state, some details may not fully reflect the modified file.