R version 2.13.0 (2011-04-13) Copyright (C) 2011 The R Foundation for Statistical Computing ISBN 3-900051-07-0 Platform: i486-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(123.46,123.24,123.86,124.28,124.78,125.19,125.46,127.60,127.80,126.63,127.06,126.77,127.05,128.23,128.60,128.97,129.34,129.71,130.08,130.45,128.82,132.19,131.56,131.93,132.30,130.67,133.05,132.42,133.79,134.16,134.53,136.90,135.27,136.64,136.01,136.38,136.75,138.12,137.50,137.87,138.24,138.61,138.98,140.35,139.72,143.09,140.46,141.83,143.20,140.57,141.95,141.32,142.69,143.06,144.43,143.80,144.17,144.54,146.91,145.28,144.65,145.02,144.40,146.77,146.14,147.51,148.88,148.25,147.62,150.99,148.36,149.73,150.10) > par1 = '0' > ylab = 'Density' > xlab = 'Value' > #'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 == '0') bw <- 'nrd0' > if (par1 != '0') bw <- as.numeric(par1) > postscript(file="/var/wessaorg/rcomp/tmp/1uvkn1317653978.ps",horizontal=F,onefile=F,pagecentre=F,paper="special",width=8.3333333333333,height=5.5555555555556) > mydensity1<-density(x,bw=bw,kernel='gaussian',na.rm=TRUE) > plot(mydensity1,main='Gaussian Kernel',xlab=xlab,ylab=ylab) > grid() > dev.off() null device 1 > mydensity1 Call: density.default(x = x, bw = bw, kernel = "gaussian", na.rm = TRUE) Data: x (73 obs.); Bandwidth 'bw' = 3.031 x y Min. :114.1 Min. :3.871e-05 1st Qu.:125.6 1st Qu.:4.385e-03 Median :137.1 Median :2.749e-02 Mean :137.1 Mean :2.175e-02 3rd Qu.:148.6 3rd Qu.:3.577e-02 Max. :160.1 Max. :3.905e-02 > postscript(file="/var/wessaorg/rcomp/tmp/2pyf91317653978.ps",horizontal=F,onefile=F,pagecentre=F,paper="special",width=8.3333333333333,height=5.5555555555556) > mydensity2<-density(x,bw=bw,kernel='epanechnikov',na.rm=TRUE) > plot(mydensity2,main='Epanechnikov Kernel',xlab=xlab,ylab=ylab) > grid() > dev.off() null device 1 > postscript(file="/var/wessaorg/rcomp/tmp/3a1201317653978.ps",horizontal=F,onefile=F,pagecentre=F,paper="special",width=8.3333333333333,height=5.5555555555556) > mydensity3<-density(x,bw=bw,kernel='rectangular',na.rm=TRUE) > plot(mydensity3,main='Rectangular Kernel',xlab=xlab,ylab=ylab) > grid() > dev.off() null device 1 > postscript(file="/var/wessaorg/rcomp/tmp/4n6gi1317653978.ps",horizontal=F,onefile=F,pagecentre=F,paper="special",width=8.3333333333333,height=5.5555555555556) > mydensity4<-density(x,bw=bw,kernel='triangular',na.rm=TRUE) > plot(mydensity4,main='Triangular Kernel',xlab=xlab,ylab=ylab) > grid() > dev.off() null device 1 > postscript(file="/var/wessaorg/rcomp/tmp/542o51317653978.ps",horizontal=F,onefile=F,pagecentre=F,paper="special",width=8.3333333333333,height=5.5555555555556) > mydensity5<-density(x,bw=bw,kernel='biweight',na.rm=TRUE) > plot(mydensity5,main='Biweight Kernel',xlab=xlab,ylab=ylab) > grid() > dev.off() null device 1 > postscript(file="/var/wessaorg/rcomp/tmp/6kbby1317653978.ps",horizontal=F,onefile=F,pagecentre=F,paper="special",width=8.3333333333333,height=5.5555555555556) > mydensity6<-density(x,bw=bw,kernel='cosine',na.rm=TRUE) > plot(mydensity6,main='Cosine Kernel',xlab=xlab,ylab=ylab) > grid() > dev.off() null device 1 > postscript(file="/var/wessaorg/rcomp/tmp/7aai21317653979.ps",horizontal=F,onefile=F,pagecentre=F,paper="special",width=8.3333333333333,height=5.5555555555556) > mydensity7<-density(x,bw=bw,kernel='optcosine',na.rm=TRUE) > plot(mydensity7,main='Optcosine Kernel',xlab=xlab,ylab=ylab) > grid() > 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,'Properties of Density Trace',2,TRUE) > a<-table.row.end(a) > a<-table.row.start(a) > a<-table.element(a,'Bandwidth',header=TRUE) > a<-table.element(a,mydensity1$bw) > a<-table.row.end(a) > a<-table.row.start(a) > a<-table.element(a,'#Observations',header=TRUE) > a<-table.element(a,mydensity1$n) > a<-table.row.end(a) > a<-table.end(a) > table.save(a,file="/var/wessaorg/rcomp/tmp/8iu0c1317653979.tab") > > try(system("convert tmp/1uvkn1317653978.ps tmp/1uvkn1317653978.png",intern=TRUE)) character(0) > try(system("convert tmp/2pyf91317653978.ps tmp/2pyf91317653978.png",intern=TRUE)) character(0) > try(system("convert tmp/3a1201317653978.ps tmp/3a1201317653978.png",intern=TRUE)) character(0) > try(system("convert tmp/4n6gi1317653978.ps tmp/4n6gi1317653978.png",intern=TRUE)) character(0) > try(system("convert tmp/542o51317653978.ps tmp/542o51317653978.png",intern=TRUE)) character(0) > try(system("convert tmp/6kbby1317653978.ps tmp/6kbby1317653978.png",intern=TRUE)) character(0) > try(system("convert tmp/7aai21317653979.ps tmp/7aai21317653979.png",intern=TRUE)) character(0) > > > proc.time() user system elapsed 1.642 0.327 1.997