R version 2.15.2 (2012-10-26) -- "Trick or Treat" Copyright (C) 2012 The R Foundation for Statistical Computing ISBN 3-900051-07-0 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. > y <- c(38,32,35,33,37,29,31,36,35,38,31,34,35,38,37,33,32,38,38,32,33,31,38,39,32,32,35,37,33,33,28,32,31,37,30,33,31,33,31,33,32,33,32,33,28,35,39,34,38,32,38,30,33,38,32,32,34,34,36,34,28,34,35,35,31,37,35,27,40,37,36,38,39,41,27,30,37,31,31,27,36,38,37,33,34,31,39,34,32,33,36,32,41,28,30,36,35,31,34,36,36,35,37,28,39,32,35,39,35,42) > x <- c(41,39,30,31,34,35,39,34,36,37,38,36,38,39,33,32,36,38,39,32,32,31,39,37,39,41,36,33,33,34,31,27,37,34,34,32,29,36,29,35,37,34,38,35,38,37,38,33,36,38,32,32,32,34,32,37,39,29,37,35,30,38,34,31,34,35,36,30,39,35,38,31,34,38,34,39,37,34,28,37,33,37,35,37,32,33,38,33,29,33,31,36,35,32,29,39,37,35,37,32,38,37,36,32,33,40,38,41,36,43) > par20 = '' > par19 = '' > par18 = '' > par17 = '' > par16 = '' > par15 = '' > par14 = '' > par13 = '' > par12 = '' > par11 = '' > par10 = '' > par9 = '' > par8 = '' > par7 = 'Y' > par6 = 'Y' > par5 = '0' > par4 = '0' > par3 = '0' > par2 = '50' > par1 = '50' > ylab = 'Separate Index' > xlab = 'Connected Index' > main = 'Bivariate Kernel Density - Y2010' > par1 <- as(par1,'numeric') > par2 <- as(par2,'numeric') > par3 <- as(par3,'numeric') > par4 <- as(par4,'numeric') > par5 <- as(par5,'numeric') > library('GenKern') Loading required package: KernSmooth KernSmooth 2.23 loaded Copyright M. P. Wand 1997-2009 > if (par3==0) par3 <- dpik(x) > if (par4==0) par4 <- dpik(y) > if (par5==0) par5 <- cor(x,y) > if (par1 > 500) par1 <- 500 > if (par2 > 500) par2 <- 500 > postscript(file="/var/fisher/rcomp/tmp/19a061355252340.ps",horizontal=F,onefile=F,pagecentre=F,paper="special",width=8.3333333333333,height=5.5555555555556) > op <- KernSur(x,y, xgridsize=par1, ygridsize=par2, correlation=par5, xbandwidth=par3, ybandwidth=par4) > image(op$xords, op$yords, op$zden, col=terrain.colors(100), axes=TRUE,main=main,xlab=xlab,ylab=ylab) > if (par6=='Y') contour(op$xords, op$yords, op$zden, add=TRUE) > if (par7=='Y') points(x,y) > (r<-lm(y ~ x)) Call: lm(formula = y ~ x) Coefficients: (Intercept) x 21.6690 0.3554 > abline(r) > box() > dev.off() null device 1 > > #Note: the /var/fisher/rcomp/createtable file can be downloaded at http://www.wessa.net/cretab > load(file="/var/fisher/rcomp/createtable") > > a<-table.start() > a<-table.row.start(a) > a<-table.element(a,'Bandwidth',2,TRUE) > a<-table.row.end(a) > a<-table.row.start(a) > a<-table.element(a,'x axis',header=TRUE) > a<-table.element(a,par3) > a<-table.row.end(a) > a<-table.row.start(a) > a<-table.element(a,'y axis',header=TRUE) > a<-table.element(a,par4) > a<-table.row.end(a) > a<-table.row.start(a) > a<-table.element(a,'Correlation',2,TRUE) > a<-table.row.end(a) > a<-table.row.start(a) > a<-table.element(a,'correlation used in KDE',header=TRUE) > a<-table.element(a,par5) > a<-table.row.end(a) > a<-table.row.start(a) > a<-table.element(a,'correlation(x,y)',header=TRUE) > a<-table.element(a,cor(x,y)) > a<-table.row.end(a) > a<-table.end(a) > table.save(a,file="/var/fisher/rcomp/tmp/237pb1355252340.tab") > > try(system("convert tmp/19a061355252340.ps tmp/19a061355252340.png",intern=TRUE)) character(0) > > > proc.time() user system elapsed 1.289 0.257 1.522