R version 2.12.1 (2010-12-16) Copyright (C) 2010 The R Foundation for Statistical Computing ISBN 3-900051-07-0 Platform: i486-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(-14,-7,-9,-9,-4,-3,1,-1,-2,1,-3,-2,0,-2,-4,-4,-7,-9,-13,-8,-13,-15,-15,-15,-10,-12,-11,-11,-17,-18,-19,-22,-24,-24,-20,-25,-22,-17,-9,-11,-13,-11,-9,-7,-3,-3,-6,-4,-8,-1,-2,-2,-1,1,2,2,-1,1,-1,-8) > par1 = '12' > par1 <- as.numeric(par1) > (n <- length(x)) [1] 60 > (np <- floor(n / par1)) [1] 5 > arr <- array(NA,dim=c(par1,np+1)) > darr <- array(NA,dim=c(par1,np+1)) > ari <- array(0,dim=par1) > dx <- diff(x) > j <- 0 > for (i in 1:n) + { + j = j + 1 + ari[j] = ari[j] + 1 + arr[j,ari[j]] <- x[i] + darr[j,ari[j]] <- dx[i] + if (j == par1) j = 0 + } > ari [1] 5 5 5 5 5 5 5 5 5 5 5 5 > arr [,1] [,2] [,3] [,4] [,5] [,6] [1,] -14 0 -10 -22 -8 NA [2,] -7 -2 -12 -17 -1 NA [3,] -9 -4 -11 -9 -2 NA [4,] -9 -4 -11 -11 -2 NA [5,] -4 -7 -17 -13 -1 NA [6,] -3 -9 -18 -11 1 NA [7,] 1 -13 -19 -9 2 NA [8,] -1 -8 -22 -7 2 NA [9,] -2 -13 -24 -3 -1 NA [10,] 1 -15 -24 -3 1 NA [11,] -3 -15 -20 -6 -1 NA [12,] -2 -15 -25 -4 -8 NA > darr [,1] [,2] [,3] [,4] [,5] [,6] [1,] 7 -2 -2 5 7 NA [2,] -2 -2 1 8 -1 NA [3,] 0 0 0 -2 0 NA [4,] 5 -3 -6 -2 1 NA [5,] 1 -2 -1 2 2 NA [6,] 4 -4 -1 2 1 NA [7,] -2 5 -3 2 0 NA [8,] -1 -5 -2 4 -3 NA [9,] 3 -2 0 0 2 NA [10,] -4 0 4 -3 -2 NA [11,] 1 0 -5 2 -7 NA [12,] 2 5 3 -4 NA NA > arr.mean <- array(NA,dim=par1) > arr.median <- array(NA,dim=par1) > arr.midrange <- array(NA,dim=par1) > for (j in 1:par1) + { + arr.mean[j] <- mean(arr[j,],na.rm=TRUE) + arr.median[j] <- median(arr[j,],na.rm=TRUE) + arr.midrange[j] <- (quantile(arr[j,],0.75,na.rm=TRUE) + quantile(arr[j,],0.25,na.rm=TRUE)) / 2 + } > overall.mean <- mean(x) > overall.median <- median(x) > overall.midrange <- (quantile(x,0.75) + quantile(x,0.25)) / 2 > postscript(file="/var/www/rcomp/tmp/11ocp1321975487.ps",horizontal=F,onefile=F,pagecentre=F,paper="special",width=8.3333333333333,height=5.5555555555556) > plot(arr.mean,type='b',ylab='mean',main='Mean Plot',xlab='Periodic Index') > mtext(paste('#blocks = ',np)) > abline(overall.mean,0) > dev.off() null device 1 > postscript(file="/var/www/rcomp/tmp/2yd6q1321975487.ps",horizontal=F,onefile=F,pagecentre=F,paper="special",width=8.3333333333333,height=5.5555555555556) > plot(arr.median,type='b',ylab='median',main='Median Plot',xlab='Periodic Index') > mtext(paste('#blocks = ',np)) > abline(overall.median,0) > dev.off() null device 1 > postscript(file="/var/www/rcomp/tmp/3iwgt1321975487.ps",horizontal=F,onefile=F,pagecentre=F,paper="special",width=8.3333333333333,height=5.5555555555556) > plot(arr.midrange,type='b',ylab='midrange',main='Midrange Plot',xlab='Periodic Index') > mtext(paste('#blocks = ',np)) > abline(overall.midrange,0) > dev.off() null device 1 > postscript(file="/var/www/rcomp/tmp/4okp31321975487.ps",horizontal=F,onefile=F,pagecentre=F,paper="special",width=8.3333333333333,height=5.5555555555556) > z <- data.frame(t(arr)) > names(z) <- c(1:par1) > (boxplot(z,notch=TRUE,col='grey',xlab='Periodic Index',ylab='Value',main='Notched Box Plots - Periodic Subseries')) $stats [,1] [,2] [,3] [,4] [,5] [,6] [,7] [,8] [,9] [,10] [,11] [,12] [1,] -22 -17 -11 -11 -17 -18 -19 -8 -24 -24 -20 -25 [2,] -14 -12 -9 -11 -13 -11 -13 -8 -13 -15 -15 -15 [3,] -10 -7 -9 -9 -7 -9 -9 -7 -3 -3 -6 -8 [4,] -8 -2 -4 -4 -4 -3 1 -1 -2 1 -3 -4 [5,] 0 -1 -2 -2 -1 1 2 2 -1 1 -1 -2 $n [1] 5 5 5 5 5 5 5 5 5 5 5 5 $conf [,1] [,2] [,3] [,4] [,5] [,6] [1,] -14.239585 -14.06597481 -12.532987 -13.946182 -13.3593773 -14.65278 [2,] -5.760415 0.06597481 -5.467013 -4.053818 -0.6406227 -3.34722 [,7] [,8] [,9] [,10] [,11] [,12] [1,] -18.8923647 -11.946182 -10.772572 -14.30556 -14.47917 -15.7725723 [2,] 0.8923647 -2.053818 4.772572 8.30556 2.47917 -0.2274277 $out [1] -22 $group [1] 8 $names [1] "1" "2" "3" "4" "5" "6" "7" "8" "9" "10" "11" "12" Warning message: In bxp(list(stats = c(-22, -14, -10, -8, 0, -17, -12, -7, -2, -1, : some notches went outside hinges ('box'): maybe set notch=FALSE > dev.off() null device 1 > postscript(file="/var/www/rcomp/tmp/5ogny1321975487.ps",horizontal=F,onefile=F,pagecentre=F,paper="special",width=8.3333333333333,height=5.5555555555556) > z <- data.frame(t(darr)) > names(z) <- c(1:par1) > (boxplot(z,notch=TRUE,col='grey',xlab='Periodic Index',ylab='Value',main='Notched Box Plots - Differenced Periodic Subseries')) $stats [,1] [,2] [,3] [,4] [,5] [,6] [,7] [,8] [,9] [,10] [,11] [,12] [1,] -2 -2 0 -6 -2 -4 -3 -5 -2 -4 -7 -4.0 [2,] -2 -2 0 -3 -1 -1 -2 -3 0 -3 -5 -1.0 [3,] 5 -1 0 -2 1 1 0 -2 0 -2 0 2.5 [4,] 7 1 0 1 2 2 2 -1 2 0 1 4.0 [5,] 7 1 0 5 2 4 5 -1 3 4 2 5.0 $n [1] 5 5 5 5 5 5 5 5 5 5 5 4 $conf [,1] [,2] [,3] [,4] [,5] [,6] [,7] [,8] [1,] -1.359377 -3.119792 0 -4.82639 -1.119792 -1.119792 -2.82639 -3.413195 [2,] 11.359377 1.119792 0 0.82639 3.119792 3.119792 2.82639 -0.586805 [,9] [,10] [,11] [,12] [1,] -1.413195 -4.1197924 -4.239585 -1.45 [2,] 1.413195 0.1197924 4.239585 6.45 $out [1] 8 -2 4 $group [1] 2 3 8 $names [1] "1" "2" "3" "4" "5" "6" "7" "8" "9" "10" "11" "12" Warning message: In bxp(list(stats = c(-2, -2, 5, 7, 7, -2, -2, -1, 1, 1, 0, 0, 0, : some notches went outside hinges ('box'): maybe set notch=FALSE > dev.off() null device 1 > postscript(file="/var/www/rcomp/tmp/67lfh1321975487.ps",horizontal=F,onefile=F,pagecentre=F,paper="special",width=8.3333333333333,height=5.5555555555556) > z <- data.frame(arr) > names(z) <- c(1:np) > (boxplot(z,notch=TRUE,col='grey',xlab='Block Index',ylab='Value',main='Notched Box Plots - Sequential Blocks')) $stats [,1] [,2] [,3] [,4] [,5] [,6] [1,] -14.0 -15.0 -25.0 -22 -2 NA [2,] -8.0 -14.0 -23.0 -12 -2 NA [3,] -3.0 -8.5 -18.5 -9 -1 NA [4,] -1.5 -4.0 -11.5 -5 1 NA [5,] 1.0 0.0 -10.0 -3 2 NA $n [1] 12 12 12 12 12 0 $conf [,1] [,2] [,3] [,4] [,5] [,6] [1,] -5.96469363 -13.061067 -23.74523 -12.192747 -2.3683201 NA [2,] -0.03530637 -3.938933 -13.25477 -5.807253 0.3683201 NA $out [1] -8 -8 $group [1] 5 5 $names [1] "1" "2" "3" "4" "5" NA Warning message: In bxp(list(stats = c(-14, -8, -3, -1.5, 1, -15, -14, -8.5, -4, : some notches went outside hinges ('box'): maybe set notch=FALSE > dev.off() null device 1 > postscript(file="/var/www/rcomp/tmp/7aulx1321975487.ps",horizontal=F,onefile=F,pagecentre=F,paper="special",width=8.3333333333333,height=5.5555555555556) > z <- data.frame(cbind(arr.mean,arr.median,arr.midrange)) > names(z) <- list('mean','median','midrange') > (boxplot(z,notch=TRUE,col='grey',ylab='Overall Central Tendency',main='Notched Box Plots')) $stats [,1] [,2] [,3] [1,] -9.0 -10.0 -11.00 [2,] -8.8 -9.0 -8.75 [3,] -8.0 -7.5 -7.25 [4,] -7.5 -6.5 -6.75 [5,] -7.0 -3.0 -4.50 $n [1] 12 12 12 $conf [,1] [,2] [,3] [1,] -8.592939 -8.640267 -8.162213 [2,] -7.407061 -6.359733 -6.337787 $out [1] -10.8 -10.8 $group [1] 1 1 $names [1] "mean" "median" "midrange" Warning message: In bxp(list(stats = c(-9, -8.8, -8, -7.5, -7, -10, -9, -7.5, -6.5, : some notches went outside hinges ('box'): maybe set notch=FALSE > dev.off() null device 1 > > try(system("convert tmp/11ocp1321975487.ps tmp/11ocp1321975487.png",intern=TRUE)) character(0) > try(system("convert tmp/2yd6q1321975487.ps tmp/2yd6q1321975487.png",intern=TRUE)) character(0) > try(system("convert tmp/3iwgt1321975487.ps tmp/3iwgt1321975487.png",intern=TRUE)) character(0) > try(system("convert tmp/4okp31321975487.ps tmp/4okp31321975487.png",intern=TRUE)) character(0) > try(system("convert tmp/5ogny1321975487.ps tmp/5ogny1321975487.png",intern=TRUE)) character(0) > try(system("convert tmp/67lfh1321975487.ps tmp/67lfh1321975487.png",intern=TRUE)) character(0) > try(system("convert tmp/7aulx1321975487.ps tmp/7aulx1321975487.png",intern=TRUE)) character(0) > > > proc.time() user system elapsed 1.892 0.400 2.282