STAT210prob2.35 | R Documentation |
An article in the journal Neurology observed that monozygotic twins (identical twins) share numerous physical, psychological, and pathological traits. This data is from the study where the investigators measured an intelligence score of 10 pairs of twins with ages between 24 and 43 years.
STAT210prob2.35
A data frame with 10 observations (rows) and 3 variables (columns).
Column name | Data type | Description | Values | |
[,1] | Pair | integer | The pair of identical twins | (1 - 10) |
[,2] | Birth_order1 | numeric | Intelligence score for twin 1 | (6.03 - 7.99) |
[,3] | Birth_order2 | numeric | Intelligence score for twin 2 | (5.73 - 8.76) |
This is data from Exercise 2.35 in Design and Analysis of Experiments, 9th Edition, EMEA Edition.
Montgomery, D. C. (2019) Design and Analysis of Experiments, 9th Edition, EMEA Edition. New York: Wiley.
Tramo, M. J., et al. (1998) Brain size, head size, and intelligence quotient in monozygotic twins. Neurology, 50, 1246–-1252.
# A short summary of the variables
summary(STAT210prob2.35)
# Intelligence score for both twins
plot(STAT210prob2.35$Birth_order1,
STAT210prob2.35$Birth_order2,
xlab = "Intelligence score, twin 1",
ylab = "Intelligence score, twin 2",
main = "Intelligence score for both twins in all pairs of twins")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.