R version 2.13.0 (2011-04-13) Copyright (C) 2011 The R Foundation for Statistical Computing ISBN 3-900051-07-0 Platform: i486-pc-linux-gnu (32-bit) R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > x <- array(list(19,18,11,20,21,21,8,25,17,4,28,19,23,4,17,19,10,24,25,27,4,22,20,13,27,17,27,4,21,17,11,23,20,22,8,26,25,24,28,22,28,4,20,26,5,27,21,27,4,14,19,5,19,17,16,4,23,16,13,28,17,24,4,20,19,9,11,22,20,4,22,25,17,25,25,22,4,15,15,12,20,15,20,10,20,12,7,20,22,24,4,22,21,16,24,21,19,8,20,15,14,25,16,23,4,28,28,24,28,28,27,4,25,26,18,24,22,21,5,26,25,12,21,21,19,4,17,12,9,22,12,19,5,23,15,8,20,25,26,12,13,14,10,20,24,28,9,24,22,19,23,24,24,4,14,21,4,21,25,24,4,22,23,19,12,25,25,5,23,25,11,23,26,16,4,22,22,11,28,22,25,4,24,24,24,24,24,24,6,21,20,17,24,17,23,4,23,22,18,25,20,26,4,22,16,12,21,15,22,5,21,22,16,26,24,25,5,26,24,23,28,26,27,4,15,16,7,21,21,12,4,25,27,10,27,25,15,4,17,20,17,22,23,21,8,25,27,21,23,28,24,4,27,24,19,24,18,19,4,25,19,13,22,21,21,4,19,16,12,23,21,21,4,26,26,22,25,23,24,7,20,22,5,21,15,18,4,20,21,14,22,23,19,4,18,14,12,20,21,18,8,18,12,12,21,10,23,5,19,22,6,19,21,20,5),dim=c(7,45),dimnames=list(c('I1','I2','I3','E1','E2','E3','A'),1:45)) > y <- array(NA,dim=c(7,45),dimnames=list(c('I1','I2','I3','E1','E2','E3','A'),1:45)) > for (i in 1:dim(x)[1]) + { + for (j in 1:dim(x)[2]) + { + y[i,j] <- as.numeric(x[i,j]) + } + } > par1 = 'grey' > ylab = 'value' > xlab = 'variables' > main = 'Notched Boxplots' > z <- as.data.frame(t(y)) > postscript(file="/var/wessaorg/rcomp/tmp/102rr1318864844.ps",horizontal=F,onefile=F,pagecentre=F,paper="special",width=8.3333333333333,height=5.5555555555556) > (r<-boxplot(z ,xlab=xlab,ylab=ylab,main=main,notch=TRUE,col=par1)) $stats [,1] [,2] [,3] [,4] [,5] [,6] [,7] [1,] 13 12 4 19 12 15 4 [2,] 19 16 10 21 19 20 4 [3,] 22 21 12 23 21 23 4 [4,] 24 24 17 25 24 25 5 [5,] 28 28 24 28 28 28 6 $n [1] 45 45 45 45 45 45 45 $conf [,1] [,2] [,3] [,4] [,5] [,6] [,7] [1,] 20.82234 19.11574 10.35127 22.05787 19.82234 21.82234 3.764468 [2,] 23.17766 22.88426 13.64873 23.94213 22.17766 24.17766 4.235532 $out [1] 11 12 10 12 8 8 10 8 12 9 8 7 8 $group [1] 4 4 5 6 7 7 7 7 7 7 7 7 7 $names [1] "I1" "I2" "I3" "E1" "E2" "E3" "A" Warning message: In bxp(list(stats = c(13, 19, 22, 24, 28, 12, 16, 21, 24, 28, 4, : some notches went outside hinges ('box'): maybe set notch=FALSE > dev.off() null device 1 > > #Note: the /var/wessaorg/rcomp/createtable file can be downloaded at http://www.wessa.net/cretab > load(file="/var/wessaorg/rcomp/createtable") > > a<-table.start() > a<-table.row.start(a) > a<-table.element(a,hyperlink('http://www.xycoon.com/overview.htm','Boxplot statistics','Boxplot overview'),6,TRUE) > a<-table.row.end(a) > a<-table.row.start(a) > a<-table.element(a,'Variable',1,TRUE) > a<-table.element(a,hyperlink('http://www.xycoon.com/lower_whisker.htm','lower whisker','definition of lower whisker'),1,TRUE) > a<-table.element(a,hyperlink('http://www.xycoon.com/lower_hinge.htm','lower hinge','definition of lower hinge'),1,TRUE) > a<-table.element(a,hyperlink('http://www.xycoon.com/central_tendency.htm','median','definitions about measures of central tendency'),1,TRUE) > a<-table.element(a,hyperlink('http://www.xycoon.com/upper_hinge.htm','upper hinge','definition of upper hinge'),1,TRUE) > a<-table.element(a,hyperlink('http://www.xycoon.com/upper_whisker.htm','upper whisker','definition of upper whisker'),1,TRUE) > a<-table.row.end(a) > for (i in 1:length(y[,1])) + { + a<-table.row.start(a) + a<-table.element(a,dimnames(t(x))[[2]][i],1,TRUE) + for (j in 1:5) + { + a<-table.element(a,r$stats[j,i]) + } + a<-table.row.end(a) + } > a<-table.end(a) > table.save(a,file="/var/wessaorg/rcomp/tmp/2xhl41318864844.tab") > a<-table.start() > a<-table.row.start(a) > a<-table.element(a,'Boxplot Notches',4,TRUE) > a<-table.row.end(a) > a<-table.row.start(a) > a<-table.element(a,'Variable',1,TRUE) > a<-table.element(a,'lower bound',1,TRUE) > a<-table.element(a,'median',1,TRUE) > a<-table.element(a,'upper bound',1,TRUE) > a<-table.row.end(a) > for (i in 1:length(y[,1])) + { + a<-table.row.start(a) + a<-table.element(a,dimnames(t(x))[[2]][i],1,TRUE) + a<-table.element(a,r$conf[1,i]) + a<-table.element(a,r$stats[3,i]) + a<-table.element(a,r$conf[2,i]) + a<-table.row.end(a) + } > a<-table.end(a) > table.save(a,file="/var/wessaorg/rcomp/tmp/3sctt1318864844.tab") > > try(system("convert tmp/102rr1318864844.ps tmp/102rr1318864844.png",intern=TRUE)) character(0) > > > proc.time() user system elapsed 0.463 0.099 0.555