Eric L. Eakin
22 November 2016
In this Shiny App exercise, I am using the classic Galton data set to predict the height of a child using the height or both parents.
Galtons data can be found here: http://www.math.uah.edu/stat/data/Galton.html
library(HistData)
summary(Galton)
parent child
Min. :64.00 Min. :61.70
1st Qu.:67.50 1st Qu.:66.20
Median :68.50 Median :68.20
Mean :68.31 Mean :68.09
3rd Qu.:69.50 3rd Qu.:70.20
Max. :73.00 Max. :73.70
The Shiny App that I made is located here: https://eleakin.shinyapps.io/DDP3/
The GitHub repo is: https://github.com/eleakin/shinyapp
The ui.R and server.R code are available in the GitHub repo.