R version 2.12.1 (2010-12-16) Copyright (C) 2010 The R Foundation for Statistical Computing ISBN 3-900051-07-0 Platform: x86_64-redhat-linux-gnu (64-bit) 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(365.8,315.9,325.9,106.0,716.1,966.3,956.2,906.1,246.1,936.0,55.8,605.7,605.7,445.6,405.8,525.6,695.6,935.6,15.5,265.4,655.4,125.5,165.4,645.4,875.3,965.4,365.2,745.2,5.1,665.0,395.0,904.9,935.0,675.0,275.0,704.9,824.7,714.8,264.7,964.7,44.6,734.6,884.7,784.7,254.5,934.4,904.5,494.4,344.6,784.5,354.4,664.5,464.4,984.6,494.7,134.6,4.7,494.7,844.7,985.0,605.0,514.8,175.1,544.9,175.4,515.6,505.8,396.1,836.2,186.6,106.8,387.3,7.8,498.2,498.6,578.9,319.4,659.5,449.5,309.7,659.8,1010.1,979.9,159.9,189.7,569.7,359.7,969.8,299.6,999.5,99.5,819.6,629.6,599.7,989.8,29.4) > par4 = '12' > par3 = 'Geeft de werkloosheidsgraad weer in de VS over de periode van 2003 - 2010 per maand.' > par2 = 'http://www.economagic.com/em-cgi/data.exe/fedstl/unrate' > par1 = 'Unemployment United States' > ylimmax = '' > ylimmin = '' > ylab = 'Werkloosheid' > xlab = 'Maand' > main = 'Werkloosheidsgraad VS' > #'GNU S' R Code compiled by R2WASP v. 1.0.44 () > #Author: Dr. Ian E. Holliday > #To cite this work: Ian E. Holliday, 2009, 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: > #Technical description: > if (par4 != 'No season') { + par4 <- as.numeric(par4) + if (par4 < 4) par4 <- 12 + } > summary(x) Min. 1st Qu. Median Mean 3rd Qu. Max. 4.7 307.2 520.6 536.4 793.4 1010.0 > n <- length(x) > postscript(file="/var/www/wessaorg/rcomp/tmp/1ku7e1297518479.ps",horizontal=F,onefile=F,pagecentre=F,paper="special",width=8.3333333333333,height=5.5555555555556) > if (par4=='No season') { + plot(x,col=2,type='b',main=main,xlab=xlab,ylab=ylab,xaxt='n') + axis(1,at=seq(1,n,10)) + } > if (par4!='No season') { + plot(x,col=2,type='b',main=main,xlab=xlab,ylab=ylab,xaxt='n') + axis(1,at=seq(1,n,par4)) + grid(nx=0,ny=NULL,col='black') + abline(v=seq(1,n,par4),col='black',lty='dotted') + } > dev.off() null device 1 > > #Note: the /var/www/wessaorg/rcomp/createtable file can be downloaded at http://www.wessa.net/cretab > load(file="/var/www/wessaorg/rcomp/createtable") > > a<-table.start() > a<-table.row.start(a) > a<-table.element(a,'Univariate Dataseries',2,TRUE) > a<-table.row.end(a) > a<-table.row.start(a) > a<-table.element(a,'Name of dataseries',header=TRUE) > a<-table.element(a,par1) > a<-table.row.end(a) > a<-table.row.start(a) > a<-table.element(a,'Source',header=TRUE) > a<-table.element(a,par2) > a<-table.row.end(a) > a<-table.row.start(a) > a<-table.element(a,'Description',header=TRUE) > a<-table.element(a,par3) > a<-table.row.end(a) > a<-table.row.start(a) > a<-table.element(a,'Number of observations',header=TRUE) > a<-table.element(a,length(x)) > a<-table.row.end(a) > a<-table.end(a) > table.save(a,file="/var/www/wessaorg/rcomp/tmp/2qfu91297518479.tab") > > try(system("convert tmp/1ku7e1297518479.ps tmp/1ku7e1297518479.png",intern=TRUE)) character(0) > > > proc.time() user system elapsed 0.490 0.090 0.602