AALEID
12/19/2018
This presentation was prepared for the final project for Developing Data Product course.
It includes:
The App plots the normal distribution curve according to paramteres specified by the user. The user should provide the following:
The user could also display the theoretical curve on the same graph.
set.seed(123)
data <- rnorm(100, 50, 20)
hist(data, prob= TRUE, main = "Normal Distribution", xlim = c(-20, 130))
The input parameters used in this example is:
mean = 50 , sd = 20 , number = 100
set.seed(123)
data <- rnorm(1000, 50, 5)
hist(data, prob= TRUE, main = "Normal Distribution", xlim = c(-20, 130))
The input parameters used in this example is:
mean = 50 , sd = 5 , number = 1000