Send output to:
Browser Blue - Charts White
Browser Black/White
CSV
Data X:
4 7 7 6 1 5 7 7 7 7 6 1 7 1 5 7 4 4 1 4 4 7 5 5 5 1 5 5 5 5 6 4 1 4 5 5 5 6 4 1 4 3 5 5 6 3 1 4 5 5 5 6 4 1 4 4 4 6 6 6 2 5 5 6 5 6 2 1 4 4 5 4 5 5 1 5 4 5 4 5 5 2 5 5 6 5 6 2 2 4 5 6 5 6 2 2 4 5 6 5 6 2 2 4 5 6 5 6 2 2 4 5 5 6 7 5 1 6 7 5 6 7 5 1 6 7 5 6 6 5 1 6 7 7 7 7 4 1 5 7 1 6 7 6 1 3 5 6 5 7 4 1 2 5 6 5 6 5 4 2 6 7 6 7 5 2 5 6 4 6 7 3 1 4 3 7 7 6 5 2 6 2 7 7 5 4 1 5 4 7 6 6 4 1 4 7 5 6 6 4 1 4 6 6 5 6 4 1 3 3 6 5 5 3 1 5 3 6 6 6 3 1 4 6 5 4 6 4 1 3 5 6 5 7 4 1 4 3 6 4 7 3 1 3 3 5 6 7 3 1 3 3 6 6 7 3 1 5 3 6 6 7 2 1 5 3 6 6 7 2 1 5 3 6 6 7 1 1 5 2 5 6 6 5 1 6 7 7 6 7 6 1 7 6 6 7 7 6 1 7 7 7 7 7 6 1 7 7 7 3 4 3 1 3 7 7 3 7 2 1 1 5 7 4 6 2 1 2 5 7 3 7 2 1 2 5 6 5 6 1 2 2 6 7 5 7 6 2 4 5 6 6 6 4 2 3 6 6 6 6 4 2 4 6 7 5 7 5 1 4 7 7 5 4 4 4 4 4 7 5 7 5 1 1 6 7 6 6 5 1 6 7 5 2 5 2 1 1 4 5 1 6 1 1 1 2 5 2 5 1 1 2 3 6 2 4 2 1 1 5 7 3 6 3 1 3 7 7 4 7 2 2 2 5 6 5 6 2 1 5 5 7 5 7 4 1 4 6 1 6 5 5 1 6 7 6 6 7 5 1 6 5 2 6 6 6 1 7 5 5 7 5 1 1 5 7 1 6 5 5 1 6 7 6 6 7 5 1 6 5 2 6 6 6 1 7 5 5 7 5 1 1 5 7 7 5 6 1 1 3 3 6 4 6 1 1 3 2 7 5 2 1 1 2 1 7 5 6 2 1 1 2 5 7 6 3 1 4 5 6 5 6 4 1 5 6 4 5 5 4 1 5 6 6 6 7 4 1 5 6 5 5 5 3 1 4 5 5 5 6 5 1 5 4 5 6 6 4 1 5 6 6 6 6 5 1 5 6 4 5 4 5 4 4 5 3 6 4 5 6 4 6 4 5 4 4 3 5 7 1 5 6 6 2 5 6
Names of X columns:
Q1_1 Q1_2 Q1_3 Q1_4 Q1_5 Q1_6 Q1_7 Q1_8 Q1_9 Q1_10 Q1_11 Q1_12 Q1_13 Q1_14 Q1_15 Q1_16 Q1_17 Q1_18 Q1_19 Q1_20 Q1_21 Q1_22 Q1_23 Q1_24 Q1_25 Q1_26 Q1_27 Q1_28
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