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