There are many ways to represent groups in data. One is trellis plots. 'Boxplots()' make grouped plots which fit the plot box linearly and therefore easy to compare. So the main idea for grouped plots is to make comparison easier.
Please note that because characters within group are likely of different nature, they are scaled. Consequently, tick marks are removed as they have no sense.
Alternatives: trellis designs.
Returns
For the efficiency reasons, the function does not return anything.
Author(s)
Alexey Shipunov
See Also
boxplot, Linechart, Dotchart3
Examples
Trees <- trees
Trees[,4]<- sample(letters[1:3], nrow(Trees), replace=TRUE)Boxplots(Trees[,1:3], factor(Trees[,4]), srt=0, adj=c(.5,1))# horizontal labelssp <- Recode(eq_s$N.POP, eq_l$N.POP, eq_l$SPECIES)eq <- cbind(sp=as.factor(sp), eq_s[,-1])eq3 <- eq[eq$sp %in% levels(eq$sp)[1:3],]Boxplots(eq3[,2:9], eq3[,1], boxcols=grey(1:3/3), slty=0)# no border lines