Consider 5 mothers with heights 67, 68, 69, 70, 71.
At which mother's height will there be the most precise prediction of daughter's height? (Your answer should depend on your data!)
Explain why in a single sentence.
I am having issues getting the answer.
This is the answer i used;
dat <- cbind(MyHeightData, Pred_inter)
ggplot(MyHeightData, aes(x = MyHeightData$Mother, y = MyHeightData$Height)) + geom_point(color = "darkslategray", size = 1) + geom_smooth(method = lm, col = "ivory4") + geom_line(aes(y = lwr), col = "red", linetype = "dashed") + geom_line(aes(y = upr), col = "red", linetype = "dashed") + xlab("Height of Father") + ylab("Height of Sons") + ggtitle("Confidence vs Prediction Interval")