Vincent Kowalski
February 19 , 2017
This application uses the following R features:
This application is used by the end-user as follows:
This application has a slider bar that is the input. The user simply slides the slider and this is used as the number of samples in the distribution. The server then uses this as input to a normal distribution calculation and displays the corresponding histogram.
The app documentation may be obtained from GitHub at:
https://github.com/vjkowalski/DataProductsAssignment4/README.md
The User Interface code has a slider as input. This code may be found on GitHub at:
https://github.com/vjkowalski/DataProductsAssignment4/ui.R
The server part of the application does the random distribution and creates the histogram for output. It may be found on GitHub at:
https://github.com/vjkowalski/DataProductsAssignment4/server.R
An example of doing a random distribution histogram is as follows:
set.seed(1);
norm <- rnorm(100, 1, 10);
plot(norm, type = 'h');