R version 2.9.0 (2009-04-17) Copyright (C) 2009 The R Foundation for Statistical Computing ISBN 3-900051-07-0 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(226.9,235.9,216.2,226.2,198.3,176.7,166.2,157.6,163.4,159.7,191.0,239.4,321.9,362.7,413.6,407.1,383.2,347.7,333.8,312.3,295.4,283.3,287.6,265.7,250.2,234.7,244.0,231.2,223.8,223.5,210.5,201.6,190.7,207.5,198.8,196.6,204.2,227.4,229.7,217.9,221.4,216.3,197.0,193.8,196.8,180.5,174.8,181.6,190.0,190.6,179.0,174.1,161.1,168.6,169.4,152.2,148.3,137.7,145.0,153.4) > par7 = '0.95' > par6 = 'MA' > par5 = '12' > par4 = '0' > par3 = '2' > par2 = '1' > par1 = '36' > #'GNU S' R Code compiled by R2WASP v. 1.0.44 () > #Author: Prof. Dr. P. Wessa > #To cite this work: AUTHOR(S), (YEAR), YOUR SOFTWARE TITLE (vNUMBER) in Free Statistics Software (v$_version), Office for Research Development and Education, URL http://www.wessa.net/rwasp_YOURPAGE.wasp/ > #Source of accompanying publication: Office for Research, Development, and Education > #Technical description: > 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 (par2 == 0) { + x <- log(x) + } else { + x <- (x ^ par2 - 1) / par2 + } > if (par3 > 0) x <- diff(x,lag=1,difference=par3) > if (par4 > 0) x <- diff(x,lag=par5,difference=par4) > postscript(file="/var/www/html/rcomp/tmp/1d9pw1260462033.ps",horizontal=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=paste('(lambda=',par2,', d=',par3,', D=',par4,', CI=', par7, ', CI type=',par6,')',sep='')) > dev.off() null device 1 > postscript(file="/var/www/html/rcomp/tmp/2zp0t1260462033.ps",horizontal=F,pagecentre=F,paper="special",width=8.3333333333333,height=5.5555555555556) > rpacf <- pacf(x,par1,main='Partial Autocorrelation',xlab='lags',ylab='PACF') > dev.off() null device 1 > (myacf <- c(racf$acf)) [1] 1.0000000000 -0.3082807152 0.1811973908 -0.1992323550 0.1340363321 [6] -0.2480266262 -0.1280534122 0.0801043910 -0.0475064770 -0.0913706055 [11] -0.0640271246 0.2265522735 -0.0434485213 -0.0770559969 0.0647818247 [16] 0.1467361133 -0.0734565669 -0.0629248108 -0.0196985245 0.1090385339 [21] -0.2145504618 0.1310504051 -0.0801162483 0.1718713448 -0.2092969259 [26] 0.1854095264 0.0433206395 -0.0212120415 -0.0430750938 -0.0410114973 [31] 0.0921031406 -0.1715722802 0.0764747041 -0.0612168072 0.0524949332 [36] -0.0009987543 0.0166218533 > (mypacf <- c(rpacf$acf)) [1] -0.308280715 0.095208745 -0.133079120 0.033418402 -0.192005193 [6] -0.323862749 0.019620217 -0.061225524 -0.229190276 -0.212342807 [11] 0.051043197 -0.015742996 -0.225997415 -0.108750601 0.069300821 [16] -0.019469119 -0.105305587 -0.220419402 0.016259905 -0.090054123 [21] 0.002818269 -0.202774040 -0.029236781 -0.030228038 0.006811945 [26] 0.021793961 -0.080023396 0.030365119 -0.029418075 -0.016021055 [31] -0.046731746 0.024671915 -0.009037612 -0.069233564 0.130728049 [36] 0.025470404 > lengthx <- length(x) > sqrtn <- sqrt(lengthx) > > #Note: the /var/www/html/rcomp/createtable file can be downloaded at http://www.wessa.net/cretab > load(file="/var/www/html/rcomp/createtable") > > 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,hyperlink('http://www.xycoon.com/basics.htm','ACF(k)','click here for more information about the Autocorrelation Function'),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="/var/www/html/rcomp/tmp/3scly1260462033.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,hyperlink('http://www.xycoon.com/basics.htm','PACF(k)','click here for more information about the Partial Autocorrelation Function'),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="/var/www/html/rcomp/tmp/4dgen1260462033.tab") > system("convert tmp/1d9pw1260462033.ps tmp/1d9pw1260462033.png") > system("convert tmp/2zp0t1260462033.ps tmp/2zp0t1260462033.png") > > > proc.time() user system elapsed 0.548 0.322 0.683