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