zgdiao
August 30, 2021
The shiny application helps to generate a normal distribution curve on demand.
A user is able to set:
of the normal distribution, to configure the curve's:
to decide:
UI of the Application
The application has been deployed on the Rstudio's shiny server:
https://zgdiao.shinyapps.io/shiny_peerassignment/.
The ui.R and server.R files have been uploaded to the github:
If a user configures:
A similar r script as follows will be executed:
x <- seq(-10, 10, by = .1)
y <- dnorm(x, mean = 2, sd = 3)
plot(x, y, type = "l", col= "darkorange", lwd = 2, xlim = c(-10,10), ylim = c(0, .4), ylab = "Density", xlab = "Values")
y0 <- dnorm(x, mean = 0, sd = 1)
lines(x, y0, lwd=1, col="gray", type = "l", lty = 2, xlim = c(-10,10))
The following plot will be presented: