Free Statistics

of Irreproducible Research!

Author's title

Author*Unverified author*
R Software Modulerwasp_notchedbox1.wasp
Title produced by softwareNotched Boxplots
Date of computationFri, 09 Oct 2009 11:47:51 -0600
Cite this page as followsStatistical Computations at FreeStatistics.org, Office for Research Development and Education, URL https://freestatistics.org/blog/index.php?v=date/2009/Oct/09/t1255110540bpx1ck9tm10lare.htm/, Retrieved Thu, 28 Mar 2024 18:50:47 +0000
Statistical Computations at FreeStatistics.org, Office for Research Development and Education, URL https://freestatistics.org/blog/index.php?pk=45125, Retrieved Thu, 28 Mar 2024 18:50:47 +0000
QR Codes:

Original text written by user:
IsPrivate?No (this computation is public)
User-defined keywordsBoxplot maandelijkse bezoekers VS
Estimated Impact134
Family? (F = Feedback message, R = changed R code, M = changed R Module, P = changed Parameters, D = changed Data)
-       [Notched Boxplots] [KEYWORD: KDGP1W32] [2009-10-09 17:47:51] [923770d86edf74ed976a539eae527e37] [Current]
Feedback Forum

Post a new message
Dataseries X:
 2357402 
 2199181 
 2603060 
 2629720 
 2638792 
 2717481 
 3810804 
 3871664 
 2998364 
 2923432 
 2712359 
 2996099 
 2395029 
 2483862 
 3120231 
 3360606 
 3177203 
 3062783 
 4242509 
 4026394 
 3192481 
 3118695 
 2782482 
 3209833 
 2630190 
 2592882 
 3785309 
 3231539 
 3421369 
 3312134 
 4647303 
 4289177 
 3463853 
 3304422 
 3006121 
 3464238 
 2921118 
 2624018 
 3500718 
 3939351 
 3467672 
 3343628 
 4852445 
 4597807 
 3653145 
 3572079 
 3334861 
 3695369 
 3075704 
 2852998 
 3942704 
 4004560 
 3822145 
 3760085 
 5267816 
 5271333 
 4144142 
 4109749 
 3896808 
 4211074 
 3402318 
 3279817 
 4706628 
 4079499 
 4344530 
 4048625 
 5394915 
 5611967 
 4145481 
 4025610 
 3552218 
 3910443 






Parameters (Session):
par1 = grey ;
Parameters (R input):
par1 = grey ;
R code (references can be found in the software module):
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('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('lower_whisker.htm','lower whisker','definition of lower whisker'),1,TRUE)
a<-table.element(a,hyperlink('lower_hinge.htm','lower hinge','definition of lower hinge'),1,TRUE)
a<-table.element(a,hyperlink('central_tendency.htm','median','definitions about measures of central tendency'),1,TRUE)
a<-table.element(a,hyperlink('upper_hinge.htm','upper hinge','definition of upper hinge'),1,TRUE)
a<-table.element(a,hyperlink('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')