connecting boxplots
Hiii, Thanks to all... Btw.: Is it possible to disable the description of extrem points in boxplots. I mean the points under the whisker's...in the image you can see what I mean... greetings, J http://www.nabble.com/file/p21425697/Test_Delay3_1_2.png
Michael A. Miller wrote:
johnhj <jharris at web.de> wrote:
> Can you also describe me how to describe the standard
> deviation of the boxplots/matrices ?
Try tapply:
> x <-read.table(file="test.txt")
> x$group <- rep(1:8, each=5)
> boxplot(V3~gruppe, data=x)
with(x, tapply(V3, gruppe, sd)) Mike
______________________________________________ R-help at r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.
View this message in context: http://www.nabble.com/connecting-boxplots-tp21405459p21425697.html Sent from the R help mailing list archive at Nabble.com.