heights {PBImisc} | R Documentation |
A dataset from ,,A modern approach to regression with R”. Simon J. Sheather 2009 . Paired heights for husbands and wifes.
data(heights)
data.frame with 96 obs. and 2 variables
Husband
, Wife
Height of husband and wife.
The dataset from ,,A modern approach to regression with R”. Simon J. Sheather 2009
A modern approach to regression with R. Simon J. Sheather 2009
data(heights)
plot(Husband~Wife, data=heights, pch=19)
abline(lm(Husband~Wife, data=heights), col="red")
abline(lm(Husband~Wife-1, data=heights), col="blue")