source('/home/pw/wessanet/cretab')



myrfcuid = 'r0657140'

x <- c(3370,2740,2920,2730,2920,4260,3210,6280,6930,4190,4740,4800,3850,2970,3450,2150,1900,2910,2200,3570,5120,4980,3990,3350,3850,3520,1790,1660,1540,2210,2060,2580,4590,4120,4700,3470,2850,1950,3190,2130,1350,1510,1470,3210,2150,3210,2540,2330,3230,1810,2060,1360,990,2310,1020,1350,2570,3170,2170,1370,1330,770,2160,1520,1070,810,1030,2640,2060,4180,2160,1500,1930,2300,1680,1070,700,1390,1250,1120,2170,1510,1630,960,1700,1390,880,860,800,1410,1200,1240,1920,1440,1940,1380,1660,1450,820,1020,820,1320,780,1340,1630,2210,2010,2100)
par8 = ''
par7 = '0.95'
par6 = 'White Noise'
par5 = '12'
par4 = '1'
par3 = '0'
par2 = '1'
par1 = 'Default'
par8 <- ''
par7 <- '0.95'
par6 <- 'White Noise'
par5 <- '12'
par4 <- '1'
par3 <- '0'
par2 <- '1'
par1 <- 'Default'
#'GNU S' R Code compiled by R2WASP v. 1.2.327 (Mon, 26 Sep 2016 16:44:08 +0200)
#Author: root
#To cite this work: Wessa P., (2016), (Partial) Autocorrelation Function (v1.0.13) in Free Statistics Software (v$_version), Office for Research Development and Education, URL http://www.wessa.net/rwasp_autocorrelation.wasp/
#Source of accompanying publication: 
#
if (par1 == 'Default') {
par1 = 10*log10(length(x))
} else {
par1 <- as.numeric(par1)
}
par2 <- as.numeric(par2)
par3 <- as.numeric(par3)
par4 <- as.numeric(par4)
par5 <- as.numeric(par5)
if (par6 == 'White Noise') par6 <- 'white' else par6 <- 'ma'
par7 <- as.numeric(par7)
if (par8 != '') par8 <- as.numeric(par8)
x <- na.omit(x)
ox <- x
if (par8 == '') {
if (par2 == 0) {
x <- log(x)
} else {
x <- (x ^ par2 - 1) / par2
}
} else {
x <- log(x,base=par8)
}
if (par3 > 0) x <- diff(x,lag=1,difference=par3)
if (par4 > 0) x <- diff(x,lag=par5,difference=par4)
postscript(file="/home/pw/wessanet/rcomp/tmp/125uo1482329286.ps",horizontal=F,onefile=F,pagecentre=F,paper="special",width=8.3333333333333,height=5.5555555555556) 
op <- par(mfrow=c(2,1))
plot(ox,type='l',main='Original Time Series',xlab='time',ylab='value')
if (par8=='') {
mytitle <- paste('Working Time Series (lambda=',par2,', d=',par3,', D=',par4,')',sep='')
mysub <- paste('(lambda=',par2,', d=',par3,', D=',par4,', CI=', par7, ', CI type=',par6,')',sep='')
} else {
mytitle <- paste('Working Time Series (base=',par8,', d=',par3,', D=',par4,')',sep='')
mysub <- paste('(base=',par8,', d=',par3,', D=',par4,', CI=', par7, ', CI type=',par6,')',sep='')
}
plot(x,type='l', main=mytitle,xlab='time',ylab='value')
par(op)
dev.off()
postscript(file="/home/pw/wessanet/rcomp/tmp/2za5u1482329286.ps",horizontal=F,onefile=F,pagecentre=F,paper="special",width=8.3333333333333,height=5.5555555555556) 
racf <- acf(x, par1, main='Autocorrelation', xlab='time lag', ylab='ACF', ci.type=par6, ci=par7, sub=mysub)
dev.off()
postscript(file="/home/pw/wessanet/rcomp/tmp/35rmv1482329286.ps",horizontal=F,onefile=F,pagecentre=F,paper="special",width=8.3333333333333,height=5.5555555555556) 
rpacf <- pacf(x,par1,main='Partial Autocorrelation',xlab='lags',ylab='PACF',sub=mysub)
dev.off()
(myacf <- c(racf$acf))
(mypacf <- c(rpacf$acf))
lengthx <- length(x)
sqrtn <- sqrt(lengthx)

a<-table.start()
a<-table.row.start(a)
a<-table.element(a,'Autocorrelation Function',4,TRUE)
a<-table.row.end(a)
a<-table.row.start(a)
a<-table.element(a,'Time lag k',header=TRUE)
a<-table.element(a,'ACF(k)',header=TRUE)
a<-table.element(a,'T-STAT',header=TRUE)
a<-table.element(a,'P-value',header=TRUE)
a<-table.row.end(a)
for (i in 2:(par1+1)) {
a<-table.row.start(a)
a<-table.element(a,i-1,header=TRUE)
a<-table.element(a,round(myacf[i],6))
mytstat <- myacf[i]*sqrtn
a<-table.element(a,round(mytstat,4))
a<-table.element(a,round(1-pt(abs(mytstat),lengthx),6))
a<-table.row.end(a)
}
a<-table.end(a)
table.save(a,file="/home/pw/wessanet/rcomp/tmp/4vzu91482329286.tab") 
a<-table.start()
a<-table.row.start(a)
a<-table.element(a,'Partial Autocorrelation Function',4,TRUE)
a<-table.row.end(a)
a<-table.row.start(a)
a<-table.element(a,'Time lag k',header=TRUE)
a<-table.element(a,'PACF(k)',header=TRUE)
a<-table.element(a,'T-STAT',header=TRUE)
a<-table.element(a,'P-value',header=TRUE)
a<-table.row.end(a)
for (i in 1:par1) {
a<-table.row.start(a)
a<-table.element(a,i,header=TRUE)
a<-table.element(a,round(mypacf[i],6))
mytstat <- mypacf[i]*sqrtn
a<-table.element(a,round(mytstat,4))
a<-table.element(a,round(1-pt(abs(mytstat),lengthx),6))
a<-table.row.end(a)
}
a<-table.end(a)
table.save(a,file="/home/pw/wessanet/rcomp/tmp/5rlly1482329286.tab") 

try(system("convert /home/pw/wessanet/rcomp/tmp/125uo1482329286.ps /home/pw/wessanet/rcomp/tmp/125uo1482329286.png",intern=TRUE))
try(system("convert /home/pw/wessanet/rcomp/tmp/2za5u1482329286.ps /home/pw/wessanet/rcomp/tmp/2za5u1482329286.png",intern=TRUE))
try(system("convert /home/pw/wessanet/rcomp/tmp/35rmv1482329286.ps /home/pw/wessanet/rcomp/tmp/35rmv1482329286.png",intern=TRUE))
