Created
September 13, 2021 18:05
-
-
Save orrymr/0905b539ebfdaa408188dd7688e80cb9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
n_ <- 2 | |
m_ <- 10000 | |
g <- ggplot(roll(m = m_, n = n_), | |
mapping = aes(x = V1)) + | |
geom_vline(xintercept = 3.5, colour = "tomato3") + | |
labs( | |
subtitle = str_interp('Density of means of dice | |
rolls for ${n_} dice over ${m_} rolls.'), | |
x = 'Mean Score', | |
y = 'Proportion of the time the value was observed' | |
) + | |
geom_bar(aes(y = ..prop..), alpha = 0.4) + | |
scale_x_continuous( | |
breaks = 1:6, | |
lim = c(0, 7) | |
) + | |
lims( | |
y = c(0, 1) | |
) + | |
geom_density() | |
g |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment