x <- c(2341
,2115
,2402
,2180
,2453
,2507
,2679
,2622
,2618
,2648
,2523
,2473
,2513
,2466
,2544
,2537
,2564
,2582
,2716
,2904
,2851
,2932
,2772
,2811
,2935
,2783
,3003
,2995
,3127
,2985
,3287
,3236
,3252
,3228
,2856
,3176
,3362
,3036
,3330
,3251
,3318
,3238
,3597
,3708
,3902
,3745
,3426
,3526
,3483
,3458
,3824
,3696
,3518
,3814
,3996
,4136
,4037
,3915
,3760
,3955
,4160
,4115
,4202
,4018
,4233
,4029
,4401
,4645
,4491
,4379
,4394
,4472
,4614
,4160
,4328
,4202
,4635
,4542
,4920
,4774
,4698
,4916
,4703
,4616
,4873
,4375
,4801
,4427
,4684
,4648
,5225
,5174
,5181
,5266
,4839
,5032
,5221
,4658
,5014
,4980
,4952
,4946
,5365
,5456
,5397
,5436
,4995
,5019
,5249
,4799
,5137
,4979
,4951
,5265
,5612
,5572
,5403
,5373
,5252
,5437
,5296
,5011
,5294
,5335
,5398
,5396
,5724
,5898
,5718
,5625
,5380
,5488
,5678
,5224
,5596
,5184
,5620
,5531
,5816
,6086
,6175
,6112
,5813
,5740
,5821
,5294
,5881
,5589
,5845
,5706
,6355
,6404
,6426
,6375
,5869
,5994
,6105
,5792
,6011
,5968
,6255
,6208
,6897
,6814
,6897
,6596
,6188
,6406
,6548
,5842
,6555
,6424
,6596
,6645
,7203
,7128
,7133
,6778
,6593
,6591
,6120
,5612
,6070
,5983
,6145
,6303
,6588
,6640
,6719
,6575
,6487
,6510
,6365
,5844
,5974
,5880
,6279
,6342
,6598
,6801
,6529
,6369
,6028
,6187
,6164
,5866
,6198
,5898
,6462
,6063
,6496
,6678
,6554
,6513
,6210
,5928
,6268
,5582
,5869
,5764
,6082
,6062
,6810
,6727
,6537
,6175
,6014
,6109)
par1 = '12'
par1 <- '12'
#'GNU S' R Code compiled by R2WASP v. 1.2.327 (Mon, 30 Nov 2015 07:01:18 +0000)
#Author: root
#To cite this work: Wessa P., (2015), Mean Plot (v1.0.5) in Free Statistics Software (v$_version), Office for Research Development and Education, URL http://www.wessa.net/rwasp_meanplot.wasp/
#Source of accompanying publication: Office for Research, Development, and Education
#
par1 <- as.numeric(par1)
x <- na.omit(x)
(n <- length(x))
(np <- floor(n / par1))
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
arr
darr
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/wessaorg/rcomp/tmp/1mc3n1476981380.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()
postscript(file="/var/wessaorg/rcomp/tmp/2d2971476981380.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()
postscript(file="/var/wessaorg/rcomp/tmp/3jyww1476981380.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()
postscript(file="/var/wessaorg/rcomp/tmp/4262t1476981380.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'))
dev.off()
postscript(file="/var/wessaorg/rcomp/tmp/5c0qr1476981380.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'))
dev.off()
postscript(file="/var/wessaorg/rcomp/tmp/6ya821476981380.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'))
dev.off()
postscript(file="/var/wessaorg/rcomp/tmp/7uvon1476981380.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'))
dev.off()

try(system("convert tmp/1mc3n1476981380.ps tmp/1mc3n1476981380.png",intern=TRUE))
try(system("convert tmp/2d2971476981380.ps tmp/2d2971476981380.png",intern=TRUE))
try(system("convert tmp/3jyww1476981380.ps tmp/3jyww1476981380.png",intern=TRUE))
try(system("convert tmp/4262t1476981380.ps tmp/4262t1476981380.png",intern=TRUE))
try(system("convert tmp/5c0qr1476981380.ps tmp/5c0qr1476981380.png",intern=TRUE))
try(system("convert tmp/6ya821476981380.ps tmp/6ya821476981380.png",intern=TRUE))
try(system("convert tmp/7uvon1476981380.ps tmp/7uvon1476981380.png",intern=TRUE))

