Kislenok Roman
09/11/2014
This presentation is related to our application that can help you predict son's height using his father's height.
You can find application here
To predict son's height you should move slider to father's actual height:
Application will predict son's height based on model and give confidence interval for his prediction:
Also it will draw comparison of father's and son's height:
require(UsingR)
data(father.son)
heightModel <- lm(sheight ~ fheight, data = father.son)
\[ \ Height_{son} = 33.8866 + 0.5141 * Height_{father} \]
summary(heightModel)$coefficients
Estimate Std. Error t value Pr(>|t|)
(Intercept) 33.8866 1.83235 18.49 1.604e-66
fheight 0.5141 0.02705 19.01 1.121e-69
Here is a residuals plot for this model