Send output to:
Browser Blue - Charts White
Browser Black/White
CSV
Data X:
26 21 21 23 17 23 20 16 15 24 17 20 19 19 18 22 18 20 20 16 8 24 20 24 25 23 19 27 28 22 22 12 20 27 22 20 26 19 16 24 16 25 22 16 14 23 18 23 19 13 14 27 14 22 24 20 8 28 11 24 26 27 23 27 27 25 13 8 9 24 22 28 22 13 15 25 23 25 21 15 19 24 24 28 7 5 6 20 14 21 17 14 11 26 23 27 25 24 17 23 24 14 25 24 17 23 24 14 19 9 5 20 8 27 23 19 15 24 23 21 22 19 17 23 21 21 21 18 20 18 24 12 18 12 7 23 25 28 22 25 15 26 23 22 18 19 15 26 21 27 23 20 10 23 21 26 20 24 14 22 26 22 15 12 9 20 18 24 21 17 18 25 17 22 18 16 17 22 15 21 19 11 14 23 13 23 22 20 16 25 26 28 16 11 10 23 16 10 18 20 10 22 21 21 20 19 14 24 20 21 24 17 10 25 14 24 24 18 9 17 20 25 18 17 12 20 22 23 21 27 16 23 20 21 17 19 18 20 18 17 22 19 18 24 24 25 16 11 9 24 20 23 21 22 19 28 19 28 24 20 23 25 23 19 24 24 22 25 26 26 16 16 14 18 22 18 16 16 14 17 20 18 18 11 12 22 13 21 20 20 12 25 22 22 24 20 16 26 22 27 17 12 11 19 20 22 19 8 14 25 6 28 20 21 13 21 21 26 15 18 9 13 20 10 22 16 13 25 23 22 23 18 19 26 20 21 16 20 13 25 24 24 19 20 13 25 22 25 19 17 14 21 18 20 21 15 11 24 23 23 24 17 18 21 21 24 22 23 19 25 24 24 18 19 15 20 21 20 24 17 19 23 20 20 24 12 15 28 11 27 22 24 17 23 22 23 23 18 8 28 27 26 22 20 10 24 25 23 20 16 12 18 18 17 18 20 12 20 20 21 25 22 20 28 24 25 16 16 12 21 27 27 20 17 14 25 21 24 15 12 10 18 18 27 19 14 18 21 15 21 19 23 18 22 24 24 16 15 7 24 22 21 17 17 18 15 14 15 28 28 9 28 28 25 25 23 22 23 26 22 20 13 11 26 17 24 16 19 15 20 18 23 23 13 14 22 11 23 21 22 14 26 26 22 23 20 20 23 23 22 18 10 8 21 15 24 20 17 17 26 22 24 9 18 9 23 26 25 25 23 22 27 20 26 20 17 10 19 18 21 21 19 12 22 19 26 22 18 12 25 23 28 27 22 20 25 24 18 18 16 18 25 23 20 16 16 16 19 27 25 22 16 13 25 23 22 20 16 17 22 18 21 20 18 17 20 16 18
Names of X columns:
I1M I2M I3M E1M E2M E3M
Sample Range:
(leave blank to include all observations)
From:
To:
Color
grey
grey
white
blue
red
black
brown
yellow
Omit all rows with missing values?
no
yes
Chart options
Title:
Label y-axis:
Label x-axis:
R Code
z <- as.data.frame(t(y)) bitmap(file='test1.png') (r<-boxplot(z ,xlab=xlab,ylab=ylab,main=main,notch=TRUE,col=par1)) dev.off() load(file='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='mytable.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='mytable1.tab')
Compute
Summary of computational transaction
Raw Input
view raw input (R code)
Raw Output
view raw output of R engine
Computing time
0 seconds
R Server
Big Analytics Cloud Computing Center
Click here to blog (archive) this computation