E3.5 {SenSrivastava} | R Documentation |
The E3.5
data frame has 6 rows and 2 columns.
Records are for 1974.
data(E3.5)
This data frame contains the following columns:
Encyclopædia Britannica, 15th Edition, 1974, Micropædia, IX, page 487.
E3.4
, for the men's records.
data(E3.5) data(E3.4) summary(E3.5) summary(E3.4) records <- rbind(E3.5,E3.4) sex <- factor(c(rep("F", 6), rep("M", 13))) records$sex <- sex summary(records)