Groups {BSDA} | R Documentation |
Data for Exercise 10.4
Groups
A data frame with 26 observations on the following 3 variables.
GroupA
GroupB
GroupC
Kitchens, L. J. (2003) Basic Statistics and Data Analysis. Duxbury
str(Groups) attach(Groups) STACKED <-stack(Groups) STACKED[1:5,] boxplot(values~ind,col=c("red","blue","green"),data=STACKED) anova(lm(values~ind,data=STACKED)) remove(STACKED) detach(Groups)