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(12.6,15.7,13.2,20.3,12.8,8,0.9,3.6,14.1,21.7,24.5,18.9,13.9,11,5.8,15.5,22.4,31.7,30.3,31.4,20.2,19.7,10.8,13.2,15.1,15.6,15.5,12.7,10.9,10,9.1,10.3,16.9,22,27.6,28.9,31,32.9,38.1,28.8,29,21.8,28.8,25.6,28.2,20.2,17.9,16.3,13.2,8.1,4.5,-0.1,0,2.3,2.8,2.9,0.1,3.5,8.6,13.8) > par7 = '0.95' > par6 = 'MA' > par5 = '12' > par4 = '1' > par3 = '1' > 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/1jik51259342746.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/2prr31259342746.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.000000000 0.315984490 0.260015191 -0.401788221 -0.248871854 [6] -0.245445814 0.064706675 0.118675267 0.194245282 0.098252871 [11] -0.113531860 -0.238378779 -0.448522366 -0.265099134 -0.177477714 [16] 0.088161400 0.074826107 0.159237435 0.010087185 0.146684569 [21] -0.040364316 0.118950203 -0.101386272 0.092619020 0.006064235 [26] 0.187393677 0.090046541 0.084507207 -0.024233709 -0.071841423 [31] -0.086553079 -0.141113818 -0.048789289 -0.077761219 0.086550174 [36] 0.031989172 0.049792074 > (mypacf <- c(rpacf$acf)) [1] 0.315984490 0.177935141 -0.602939216 0.003843390 0.245700501 [6] -0.106913733 -0.066970122 0.150681819 0.051733728 -0.363600538 [11] -0.132660592 -0.176339146 -0.144440969 -0.092556374 -0.200136919 [16] -0.189989656 0.100683512 -0.048875991 0.128950766 -0.042810150 [21] 0.083303582 -0.136662089 -0.047074416 -0.009207383 -0.110491043 [26] -0.080973657 -0.121936302 -0.031917728 -0.009023636 -0.084858092 [31] -0.014849030 0.053758394 0.002126440 -0.014994888 0.067586983 [36] -0.091514749 > 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/3vzec1259342746.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/4owt61259342746.tab") > system("convert tmp/1jik51259342746.ps tmp/1jik51259342746.png") > system("convert tmp/2prr31259342746.ps tmp/2prr31259342746.png") > > > proc.time() user system elapsed 0.549 0.333 0.668