source('/home/pw/wessanet/cretab') myrfcuid = '' x <- c(12.00,9.00,8.00,26.00,18.00,19.00,17.00,21.00,4.00,85.00,29.00,10.00,15.00,16.00,20.00,26.00,46.00,54.00,27.00,29.00,90.00,92.00,74.00,115.00,127.00,106.00,45.00,54.00,92.00,37.00,44.00,33.00,26.00,75.00,35.00,43.00,55.00,46.00,55.00,44.00,46.00,55.00,35.00,232.00,549.00,824.00,776.00,787.00,813.00,688.00,720.00,697.00) par8 = '' par7 = '0.95' par6 = 'White Noise' par5 = '12' par4 = '0' par3 = '0' par2 = '1' par1 = 'Default' par8 <- '' par7 <- '0.95' par6 <- 'White Noise' par5 <- '12' par4 <- '0' par3 <- '0' par2 <- '1' par1 <- 'Default' #'GNU S' R Code compiled by R2WASP v. 1.2.327 (Sat, 08 Jul 2017 19:39:16 +0200) #Author: root #To cite this work: Wessa P., (2017), (Partial) Autocorrelation Function (v1.0.15) 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/15hl41602335313.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/2ojko1602335313.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/3yq5t1602335313.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/4rrka1602335313.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/5lccd1602335313.tab") try(system("convert /home/pw/wessanet/rcomp/tmp/15hl41602335313.ps /home/pw/wessanet/rcomp/tmp/15hl41602335313.png",intern=TRUE)) try(system("convert /home/pw/wessanet/rcomp/tmp/2ojko1602335313.ps /home/pw/wessanet/rcomp/tmp/2ojko1602335313.png",intern=TRUE)) try(system("convert /home/pw/wessanet/rcomp/tmp/3yq5t1602335313.ps /home/pw/wessanet/rcomp/tmp/3yq5t1602335313.png",intern=TRUE))