R version 3.0.2 (2013-09-25) -- "Frisbee Sailing" Copyright (C) 2013 The R Foundation for Statistical Computing Platform: i686-pc-linux-gnu (32-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(2.79,3.08,3.89,3.7,4.61,5.07,5.22,4.93,5.15,4.8,3.89,3.54,3.34,2.8,1.6,1.53,0.69,-0.11,-0.67,-0.2,-0.62,-0.58,-0.31,-0.25,-0.08,0.13,0.94,1.05,1.59,2.03,2.15,2.06,2.56,2.55,2.53,2.6,2.71,2.82,2.93,2.88,2.89,3.27,3.32,3.14,3.04,3.08,3.39,3.23,3.38,3.41,3.14,2.96,2.73,2.21,2.23,2.56,2.39,2.49,2.17,2.16,1.48,1.09,1.25,1.26,1.39,1.69,1.55,1.19,1.08,0.93,0.98,1.01) > par4 = 'No season' > par3 = 'Deze cijfers geven de gezondheidsindex van januari 2008 tot en met december 2013 weer. ' > par2 = 'http://www.nbb.be/belgostat/PresentationLinker?TableId=607000039&Lang=N' > par1 = 'Gezondheidsindex ' > ylimmax = '' > ylimmin = '' > ylab = 'value' > xlab = 'index or time' > main = 'Univariate Data' > par4 <- 'No season' > par3 <- '' > par2 <- 'http://www.nbb.be/belgostat/PresentationLinker?TableId=607000039&Lang=N' > par1 <- 'Gezondheidsindex ' > if (par4 != 'No season') { + par4 <- as.numeric(par4) + if (par4 < 4) par4 <- 12 + } > summary(x) Min. 1st Qu. Median Mean 3rd Qu. Max. -0.670 1.235 2.510 2.242 3.140 5.220 > n <- length(x) > postscript(file="/var/wessaorg/rcomp/tmp/1p0va1391857363.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/wessaorg/rcomp/createtable file can be downloaded at http://www.wessa.net/cretab > load(file="/var/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/wessaorg/rcomp/tmp/22jtt1391857364.tab") > > try(system("convert tmp/1p0va1391857363.ps tmp/1p0va1391857363.png",intern=TRUE)) character(0) > > > proc.time() user system elapsed 1.039 0.188 1.217