Zachary Eisenstein
March 12, 2017
This presentation is a deliverable for the Developing Data Products final project. The requirements were to build a Shiny application to be deployed onto the Rstudio servers, as well as to prepare an accompanying reproducable pitch presentation.
This project utilizes R's simulation capabilities as well as the ggplot graphical interface to explore the effect of correlation on random variables. The Shiny app allows for user input of the desired correlation and properties of the random variables. The presentation was created using RStudio Presenter.
The app can be accessed here.
Below is an example of simulation of uncorrelated variables
x <- rnorm(100); y <- rnorm(100) # simulate 100 pairs of standard normals
plot(x,y) # scatter plot
abline(lm(y~x), col="red") # regression line (y~x)
Inputs to the Shiny App: