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