geom_area를 이용하여 정규분포를 표현해 보자
geom_area를 이용하여 정규분포를 표현해 보자
geom_area를 이용하여 정규분포를 표현해 보자
1
2
3
4
5
6
7
8
9
10
11
12
13
library(ggplot2)
df_norm <- data.frame(x = seq(-5, 5, 0.01),
density = dnorm(x = seq(-5, 5, 0.01), mean = 0, sd = 1))
ggplot(df_norm, aes (x = x, y = density)) +
geom_path(color = "cornflowerblue", size = 1.2) +
scale_x_continuous(expand = c(0, 0)) +
scale_x_continuous(breaks = seq(-5,5,1)) +
geom_area(data = subset(df_norm, x <= qnorm(0.025) ), fill = 'cornflowerblue', alpha=.7) +
geom_area(data = subset(df_norm, x >= qnorm(0.975) ), fill = 'cornflowerblue', alpha=.7) +
annotate("text", x = c(-2.3, 2.3), y = 0.01, label = c(0.025, 0.025)) +
annotate("text", x = 0, y = dnorm(0)+0.01, label = round(dnorm(0),4)) +
theme_classic()
This post is licensed under CC BY 4.0 by the author.