Free Statistics

of Irreproducible Research!

Author's title

Author*The author of this computation has been verified*
R Software Modulerwasp_notchedbox1.wasp
Title produced by softwareNotched Boxplots
Date of computationTue, 21 Jan 2020 16:14:01 +0100
Cite this page as followsStatistical Computations at FreeStatistics.org, Office for Research Development and Education, URL https://freestatistics.org/blog/index.php?v=date/2020/Jan/21/t1579619683mc193kx3b9c6uaw.htm/, Retrieved Fri, 26 Apr 2024 22:39:32 +0200
Statistical Computations at FreeStatistics.org, Office for Research Development and Education, URL https://freestatistics.org/blog/index.php?pk=, Retrieved Fri, 26 Apr 2024 22:39:32 +0200
QR Codes:

Original text written by user:
IsPrivate?No (this computation is public)
User-defined keywords
Estimated Impact0
Dataseries X:
10
8
8
9
5
10
8
9
8
7
10
10
9
4
4
8
9
10
8
5
10
8
7
8
8
9
8
6
8
8
5
9
8
8
8
6
6
9
8
9
10
8
8
7
7
10
8
7
10
7
7
9
9
8
6
8
9
2
6
8
8
7
8
6
10
10
10
8
8
7
10
5
3
2
3
4
2
6
8
8
5
10
9
8
9
8
5
7
9
8
4
7
8
7
7
9
6
7
4
6
10
9
10
8
4
8
5
8
9
8
4
8
10
6
7
10
9
8
3
8
7
7
8
8
7
7
9
9
9
4
6
6
6
8
3
8
8
6
10
2
9
6
6
5
4
7
5
8
6
9
6
4
7
2
8
9
6
5
7
8
4
9
9
9
7
5
7
9
8
6
9
8
7
7
7
8
10
6
6




\begin{tabular}{lllllllll}
\hline
Summary of computational transaction \tabularnewline
Raw Input view raw input (R code)  \tabularnewline
Raw Outputview raw output of R engine  \tabularnewline
Computing time0 seconds \tabularnewline
R ServerBig Analytics Cloud Computing Center \tabularnewline
R Engine error message & 
Error in xypolygon(xx, yy, lty = "blank", col = boxfill[i]) : 
  invalid color name 'two.sided'
Calls: boxplot ... boxplot.default -> do.call -> bxp -> bplt -> xypolygon
Execution halted
\tabularnewline \hline \end{tabular} %Source: https://freestatistics.org/blog/index.php?pk=&T=0

[TABLE]
[ROW]
Summary of computational transaction[/C][/ROW] [ROW]Raw Input[/C] view raw input (R code) [/C][/ROW] [ROW]Raw Output[/C]view raw output of R engine [/C][/ROW] [ROW]Computing time[/C]0 seconds[/C][/ROW] [ROW]R Server[/C]Big Analytics Cloud Computing Center[/C][/ROW] [ROW]R Engine error message[/C][C]
Error in xypolygon(xx, yy, lty = "blank", col = boxfill[i]) : 
  invalid color name 'two.sided'
Calls: boxplot ... boxplot.default -> do.call -> bxp -> bplt -> xypolygon
Execution halted
[/C][/ROW] [/TABLE] Source: https://freestatistics.org/blog/index.php?pk=&T=0

Globally Unique Identifier (entire table): ba.freestatistics.org/blog/index.php?pk=&T=0

As an alternative you can also use a QR Code:  

The GUIDs for individual cells are displayed in the table below:

Summary of computational transaction
Raw Input view raw input (R code)
Raw Outputview raw output of R engine
Computing time0 seconds
R ServerBig Analytics Cloud Computing Center
R Engine error message
Error in xypolygon(xx, yy, lty = "blank", col = boxfill[i]) : 
  invalid color name 'two.sided'
Calls: boxplot ... boxplot.default -> do.call -> bxp -> bplt -> xypolygon
Execution halted



Parameters (Session):
par1 = two.sided ; par2 = 0.95 ; par3 = 33 ;
Parameters (R input):
par1 = two.sided ; par2 = 0.95 ;
R code (references can be found in the software module):
if(par2=='yes') {
z <- na.omit(as.data.frame(t(y)))
} else {
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,'Boxplot statistics',6,TRUE)
a<-table.row.end(a)
a<-table.row.start(a)
a<-table.element(a,'Variable',1,TRUE)
a<-table.element(a,'lower whisker',1,TRUE)
a<-table.element(a,'lower hinge',1,TRUE)
a<-table.element(a,'median',1,TRUE)
a<-table.element(a,'upper hinge',1,TRUE)
a<-table.element(a,'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')