R version 2.15.2 (2012-10-26) -- "Trick or Treat" Copyright (C) 2012 The R Foundation for Statistical Computing ISBN 3-900051-07-0 Platform: i686-pc-linux-gnu (32-bit) R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > x <- c(39.28,39.36,39.55,39.64,39.8,39.79,39.79,39.86,39.91,40,40.01,40.01,40.01,39.96,40,39.76,39.68,39.7,39.7,39.73,39.64,39.56,39.67,39.66,39.66,40.05,39.99,40.06,40.08,40.1,40.1,40.12,40.07,40.24,40.58,40.72,40.72,40.89,40.9,41.04,41.27,41.29,41.29,41.33,41.34,41.37,41.33,41.37,41.37,41.42,41.61,41.58,41.75,41.75,41.75,41.85,41.84,41.97,42.01,42.04,42.04,42.06,41.93,41.93,41.99,42.03,42.03,42.12,42.22,42.21,42.23,42.22) > par3 = '0' > par2 = '5' > par1 = '750' > par3 <- '0' > par2 <- '5' > par1 <- '750' > #'GNU S' R Code compiled by R2WASP v. 1.2.291 () > #Author: root > #To cite this work: Wessa P., (2012), Bootstrap Plot for Central Tendency (v1.0.10) in Free Statistics Software (v$_version), Office for Research Development and Education, URL http://www.wessa.net/rwasp_bootstrapplot1.wasp/ > #Source of accompanying publication: Office for Research, Development, and Education > # > par1 <- as.numeric(par1) > par2 <- as.numeric(par2) > if (par3 == '0') bw <- NULL > if (par3 != '0') bw <- as.numeric(par3) > if (par1 < 10) par1 = 10 > if (par1 > 5000) par1 = 5000 > library(modeest) This is package 'modeest' written by Paul PONCET. For a complete list of functions, use 'library(help = "modeest")' or 'help.start()'. > library(lattice) > library(boot) Attaching package: 'boot' The following object(s) are masked from 'package:lattice': melanoma > boot.stat <- function(s,i) + { + s.mean <- mean(s[i]) + s.median <- median(s[i]) + s.midrange <- (max(s[i]) + min(s[i])) / 2 + s.mode <- mlv(s[i], method='mfv')$M + s.kernelmode <- mlv(s[i], method='kernel', bw=bw)$M + c(s.mean, s.median, s.midrange, s.mode, s.kernelmode) + } > (r <- boot(x,boot.stat, R=par1, stype='i')) ORDINARY NONPARAMETRIC BOOTSTRAP Call: boot(data = x, statistic = boot.stat, R = par1, stype = "i") Bootstrap Statistics : original bias std. error t1* 40.77681 -0.004371481 0.11599501 t2* 40.72000 -0.063946667 0.42772767 t3* 40.75500 0.023786667 0.04797426 t4* 41.04333 -0.183247778 0.79528154 t5* 39.89661 0.757970619 0.99924831 Warning messages: 1: In .deal.ties(ny, i, tie.action, tie.limit) : encountered a tie, and the difference between minimal and maximal value is > length('x') * 'tie.limit' the distribution could be multimodal 2: In .deal.ties(ny, i, tie.action, tie.limit) : encountered a tie, and the difference between minimal and maximal value is > length('x') * 'tie.limit' the distribution could be multimodal 3: In .deal.ties(ny, i, tie.action, tie.limit) : encountered a tie, and the difference between minimal and maximal value is > length('x') * 'tie.limit' the distribution could be multimodal 4: In .deal.ties(ny, i, tie.action, tie.limit) : encountered a tie, and the difference between minimal and maximal value is > length('x') * 'tie.limit' the distribution could be multimodal 5: In .deal.ties(ny, i, tie.action, tie.limit) : encountered a tie, and the difference between minimal and maximal value is > length('x') * 'tie.limit' the distribution could be multimodal 6: In .deal.ties(ny, i, tie.action, tie.limit) : encountered a tie, and the difference between minimal and maximal value is > length('x') * 'tie.limit' the distribution could be multimodal > postscript(file="/var/wessaorg/rcomp/tmp/1idpe1354453052.ps",horizontal=F,onefile=F,pagecentre=F,paper="special",width=8.3333333333333,height=5.5555555555556) > plot(r$t[,1],type='p',ylab='simulated values',main='Simulation of Mean') > grid() > dev.off() null device 1 > postscript(file="/var/wessaorg/rcomp/tmp/2jrc51354453052.ps",horizontal=F,onefile=F,pagecentre=F,paper="special",width=8.3333333333333,height=5.5555555555556) > plot(r$t[,2],type='p',ylab='simulated values',main='Simulation of Median') > grid() > dev.off() null device 1 > postscript(file="/var/wessaorg/rcomp/tmp/3yobu1354453052.ps",horizontal=F,onefile=F,pagecentre=F,paper="special",width=8.3333333333333,height=5.5555555555556) > plot(r$t[,3],type='p',ylab='simulated values',main='Simulation of Midrange') > grid() > dev.off() null device 1 > postscript(file="/var/wessaorg/rcomp/tmp/4z0051354453052.ps",horizontal=F,onefile=F,pagecentre=F,paper="special",width=8.3333333333333,height=5.5555555555556) > plot(r$t[,4],type='p',ylab='simulated values',main='Simulation of Mode') > grid() > dev.off() null device 1 > postscript(file="/var/wessaorg/rcomp/tmp/57np51354453052.ps",horizontal=F,onefile=F,pagecentre=F,paper="special",width=8.3333333333333,height=5.5555555555556) > plot(r$t[,5],type='p',ylab='simulated values',main='Simulation of Mode of Kernel Density') > grid() > dev.off() null device 1 > postscript(file="/var/wessaorg/rcomp/tmp/6c53a1354453052.ps",horizontal=F,onefile=F,pagecentre=F,paper="special",width=8.3333333333333,height=5.5555555555556) > densityplot(~r$t[,1],col='black',main='Density Plot',xlab='mean') > dev.off() null device 1 > postscript(file="/var/wessaorg/rcomp/tmp/7v3751354453052.ps",horizontal=F,onefile=F,pagecentre=F,paper="special",width=8.3333333333333,height=5.5555555555556) > densityplot(~r$t[,2],col='black',main='Density Plot',xlab='median') > dev.off() null device 1 > postscript(file="/var/wessaorg/rcomp/tmp/8werl1354453052.ps",horizontal=F,onefile=F,pagecentre=F,paper="special",width=8.3333333333333,height=5.5555555555556) > densityplot(~r$t[,3],col='black',main='Density Plot',xlab='midrange') > dev.off() null device 1 > postscript(file="/var/wessaorg/rcomp/tmp/91otv1354453052.ps",horizontal=F,onefile=F,pagecentre=F,paper="special",width=8.3333333333333,height=5.5555555555556) > densityplot(~r$t[,4],col='black',main='Density Plot',xlab='mode') > dev.off() null device 1 > postscript(file="/var/wessaorg/rcomp/tmp/10s26m1354453052.ps",horizontal=F,onefile=F,pagecentre=F,paper="special",width=8.3333333333333,height=5.5555555555556) > densityplot(~r$t[,5],col='black',main='Density Plot',xlab='mode of kernel dens.') > dev.off() null device 1 > z <- data.frame(cbind(r$t[,1],r$t[,2],r$t[,3],r$t[,4],r$t[,5])) > colnames(z) <- list('mean','median','midrange','mode','mode k.dens') > postscript(file="/var/wessaorg/rcomp/tmp/1148rg1354453052.ps",horizontal=F,onefile=F,pagecentre=F,paper="special",width=8.3333333333333,height=5.5555555555556) > boxplot(z,notch=TRUE,ylab='simulated values',main='Bootstrap Simulation - Central Tendency') Warning message: In bxp(list(stats = c(40.4651388888889, 40.6954166666667, 40.7677083333333, : some notches went outside hinges ('box'): maybe set notch=FALSE > grid() > dev.off() null device 1 > > #Note: the /var/wessaorg/rcomp/createtable file can be downloaded at http://www.wessa.net/cretab > load(file="/var/wessaorg/rcomp/createtable") > > a<-table.start() > a<-table.row.start(a) > a<-table.element(a,'Estimation Results of Bootstrap',6,TRUE) > a<-table.row.end(a) > a<-table.row.start(a) > a<-table.element(a,'statistic',header=TRUE) > a<-table.element(a,'Q1',header=TRUE) > a<-table.element(a,'Estimate',header=TRUE) > a<-table.element(a,'Q3',header=TRUE) > a<-table.element(a,'S.D.',header=TRUE) > a<-table.element(a,'IQR',header=TRUE) > a<-table.row.end(a) > a<-table.row.start(a) > a<-table.element(a,'mean',header=TRUE) > q1 <- quantile(r$t[,1],0.25)[[1]] > q3 <- quantile(r$t[,1],0.75)[[1]] > a<-table.element(a,signif(q1,par2)) > a<-table.element(a,signif(r$t0[1],par2)) > a<-table.element(a,signif(q3,par2)) > a<-table.element( a,signif( sqrt(var(r$t[,1])),par2 ) ) > a<-table.element(a,signif(q3-q1,par2)) > a<-table.row.end(a) > a<-table.row.start(a) > a<-table.element(a,'median',header=TRUE) > q1 <- quantile(r$t[,2],0.25)[[1]] > q3 <- quantile(r$t[,2],0.75)[[1]] > a<-table.element(a,signif(q1,par2)) > a<-table.element(a,signif(r$t0[2],par2)) > a<-table.element(a,signif(q3,par2)) > a<-table.element(a,signif(sqrt(var(r$t[,2])),par2)) > a<-table.element(a,signif(q3-q1,par2)) > a<-table.row.end(a) > a<-table.row.start(a) > a<-table.element(a,'midrange',header=TRUE) > q1 <- quantile(r$t[,3],0.25)[[1]] > q3 <- quantile(r$t[,3],0.75)[[1]] > a<-table.element(a,signif(q1,par2)) > a<-table.element(a,signif(r$t0[3],par2)) > a<-table.element(a,signif(q3,par2)) > a<-table.element(a,signif(sqrt(var(r$t[,3])),par2)) > a<-table.element(a,signif(q3-q1,par2)) > a<-table.row.end(a) > a<-table.row.start(a) > a<-table.element(a,'mode',header=TRUE) > q1 <- quantile(r$t[,4],0.25)[[1]] > q3 <- quantile(r$t[,4],0.75)[[1]] > a<-table.element(a,signif(q1,par2)) > a<-table.element(a,signif(r$t0[4],par2)) > a<-table.element(a,signif(q3,par2)) > a<-table.element(a,signif(sqrt(var(r$t[,4])),par2)) > a<-table.element(a,signif(q3-q1,par2)) > a<-table.row.end(a) > a<-table.row.start(a) > a<-table.element(a,'mode k.dens',header=TRUE) > q1 <- quantile(r$t[,5],0.25)[[1]] > q3 <- quantile(r$t[,5],0.75)[[1]] > a<-table.element(a,signif(q1,par2)) > a<-table.element(a,signif(r$t0[5],par2)) > a<-table.element(a,signif(q3,par2)) > a<-table.element(a,signif(sqrt(var(r$t[,5])),par2)) > a<-table.element(a,signif(q3-q1,par2)) > a<-table.row.end(a) > a<-table.end(a) > table.save(a,file="/var/wessaorg/rcomp/tmp/125r3v1354453052.tab") > > try(system("convert tmp/1idpe1354453052.ps tmp/1idpe1354453052.png",intern=TRUE)) character(0) > try(system("convert tmp/2jrc51354453052.ps tmp/2jrc51354453052.png",intern=TRUE)) character(0) > try(system("convert tmp/3yobu1354453052.ps tmp/3yobu1354453052.png",intern=TRUE)) character(0) > try(system("convert tmp/4z0051354453052.ps tmp/4z0051354453052.png",intern=TRUE)) character(0) > try(system("convert tmp/57np51354453052.ps tmp/57np51354453052.png",intern=TRUE)) character(0) > try(system("convert tmp/6c53a1354453052.ps tmp/6c53a1354453052.png",intern=TRUE)) character(0) > try(system("convert tmp/7v3751354453052.ps tmp/7v3751354453052.png",intern=TRUE)) character(0) > try(system("convert tmp/8werl1354453052.ps tmp/8werl1354453052.png",intern=TRUE)) character(0) > try(system("convert tmp/91otv1354453052.ps tmp/91otv1354453052.png",intern=TRUE)) character(0) > try(system("convert tmp/10s26m1354453052.ps tmp/10s26m1354453052.png",intern=TRUE)) character(0) > try(system("convert tmp/1148rg1354453052.ps tmp/1148rg1354453052.png",intern=TRUE)) character(0) > > > proc.time() user system elapsed 12.796 1.150 13.989