| Galton | R Documentation |
These data are from Galton's 1886 study of human height.
Galton
A data frame with 898 observations on the following 9 variables.
familyIndicator variable for family unit (or parentages).
fatherHeight of the father in inches.
motherHeight of the mother in inches.
sexSex of the child (M = Male, F = Female).
heightHeight of the child.
no.childrenNumber of children in family unit.
mother.adjMother's height multiplied by 1.08.
height.adjAdjusted height of the children (see details).
mid.parentThe “mid-parent” height (see details).
Galton's data comprised 898 adult children from 197 family units (father-and-mother couples). Mid-parent is the mean of the height of the father and of his wife's height multiplied by 1.08. Similarly, adjusted height has the same correction with female children's height also multiplied by 1.08, and male child heights are left unchanged.
Francis Galton, 2017, "Galton height data", Harvard Dataverse
Galton, Francis. "Regression towards mediocrity in hereditary stature." The Journal of the Anthropological Institute of Great Britain and Ireland 15 (1886): 246-263.
Stephen Senn, Francis Galton and Regression to the Mean, Significance, Volume 8, Issue 3, September 2011, Pages 124–126.
data(Galton, package = "R4HCR")
# Regression to the mean
lm.mod <- lm(height.adj ~ mid.parent, data = Galton)
su <- summary(lm.mod)
coef(lm.mod)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.