Send output to:
Browser Blue - Charts White
Browser Black/White
CSV
Data X:
26 21 21 23 17 23 4 20 16 15 24 17 20 4 19 19 18 22 18 20 6 20 16 8 24 20 24 8 25 23 19 27 28 22 4 22 12 20 27 22 20 8 26 19 16 24 16 25 5 22 16 14 23 18 23 4 19 13 14 27 14 22 4 24 20 8 28 11 24 4 26 27 23 27 27 25 4 13 8 9 24 22 28 4 22 13 15 25 23 25 8 21 15 19 24 24 28 7 7 5 6 20 14 21 4 17 14 11 26 23 27 5 25 24 17 23 24 14 4 25 24 17 23 24 14 4 19 9 5 20 8 27 4 23 19 15 24 23 21 4 22 19 17 23 21 21 4 21 18 20 18 24 12 15 18 12 7 23 25 28 4 22 25 15 26 23 22 4 18 19 15 26 21 27 7 23 20 10 23 21 26 4 20 24 14 22 26 22 6 15 12 9 20 18 24 16 21 17 18 25 17 22 6 18 16 17 22 15 21 9 19 11 14 23 13 23 4 22 20 16 25 26 28 5 16 11 10 23 16 10 4 18 20 10 22 21 21 5 20 19 14 24 20 21 4 24 17 10 25 14 24 4 24 18 9 17 20 25 4 18 17 12 20 22 23 6 21 27 16 23 20 21 4 17 19 18 20 18 17 18 22 19 18 24 24 25 4 16 11 9 24 20 23 5 21 22 19 28 19 28 4 24 20 23 25 23 19 10 24 24 22 25 26 26 5 16 16 14 18 22 18 8 16 16 14 17 20 18 8 18 11 12 22 13 21 5 20 20 12 25 22 22 4 24 20 16 26 22 27 5 17 12 11 19 20 22 14 19 8 14 25 6 28 8 20 21 13 21 21 26 8 15 18 9 13 20 10 4 22 16 13 25 23 22 6 23 18 19 26 20 21 4 16 20 13 25 24 24 7 19 20 13 25 22 25 7 19 17 14 21 18 20 6 21 15 11 24 23 23 4 24 17 18 21 21 24 8 22 23 19 25 24 24 4 18 19 15 20 21 20 10 24 17 19 23 20 20 6 24 12 15 28 11 27 4 22 24 17 23 22 23 4 23 18 8 28 27 26 4 22 20 10 24 25 23 5 20 16 12 18 18 17 4 18 20 12 20 20 21 6 25 22 20 28 24 25 4 16 16 12 21 27 27 7 20 17 14 25 21 24 8 15 12 10 18 18 27 8 19 14 18 21 15 21 10 19 23 18 22 24 24 8 16 15 7 24 22 21 5 17 17 18 15 14 15 12 28 28 9 28 28 25 4 25 23 22 23 26 22 4 20 13 11 26 17 24 6 16 19 15 20 18 23 7 23 13 14 22 11 23 8 21 22 14 26 26 22 11 23 20 20 23 23 22 8 18 10 8 21 15 24 6 20 17 17 26 22 24 7 9 18 9 23 26 25 5 25 23 22 27 20 26 8 20 17 10 19 18 21 4 21 19 12 22 19 26 5 22 18 12 25 23 28 6 27 22 20 25 24 18 4 18 16 18 25 23 20 6 16 16 16 19 27 25 16 22 16 13 25 23 22 6 20 16 17 22 18 21 6 20 18 17 20 16 18 4
Names of X columns:
I1 I2 I3 E1 E2 E3 A
Sample Range:
(leave blank to include all observations)
From:
To:
Color
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