| Parented {BSDA} | R Documentation |
Data for Exercise 1.32
Parented
A data frame with 6 observations on the following 3 variables.
Educat4yr college degree Doctoral degree Grad degree H.S grad or less Some college Some grad schoolMotherFatherKitchens, L. J. (2003) Basic Statistics and Data Analysis. Duxbury
str(Parented)
attach(Parented)
MAT <- cbind(Mother, Father)
row.names(MAT) <- Educat
MAT
barplot(t(MAT),beside=TRUE,legend=TRUE,col=c("blue","red"))
detach(Parented)
remove(MAT)