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(132.8,132.5,131.4,131.4,130.7,131.5,131.2,130.1,130.5,129,128.2,128.4,127.3,127.7,127,123.9,125.4,124.6,124.5,124.8,124.1,124.2,122.8,122.3,121.1,121.7,122.2,122.2,122.7,121.7,121,119.8,120.2,116.6,116,118,117.1,116.2,113.3,114.3,113.6,113,112.9,112.7,112.5,113,111.9,110.9,109.8,108.3,109.2,109.2,108.7,109.8,110.8,110,109.6,109.5,110.8,111.6,113.1,114.3,114.1,113.8,112.6,112.7,111.5,110.7,110.4,109.7,110,111.3,109,108.2,107.2,108.7,110.3,110.3,109.5,109.5,109.4,109.6,111.3,110,109.5,110.693,109.195,108.095,108.199,106.87,105.278,108.711,111.192,109.641,109.42,109.935,111.126,110.733,110.34,111.766,111.294,111.54,112.008,111.007,114.963,112.045,110.703,108.894,107.51,111.35,112.964,115.203,115.182,115.191,112.346,110.774,113.07,111.138,109.092,107.971,107.051) > #'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: Write here your technical program description (don't use hard returns!) > library(Hmisc) Loading required package: survival Loading required package: splines Attaching package: 'Hmisc' The following object(s) are masked from package:survival : untangle.specials The following object(s) are masked from package:base : format.pval, round.POSIXt, trunc.POSIXt, units > m <- mean(x) > e <- median(x) > postscript(file="/var/www/html/rcomp/tmp/1ik8w1268603749.ps",horizontal=F,pagecentre=F,paper="special",width=8.3333333333333,height=11.111111111111) > op <- par(mfrow=c(2,1)) > mydensity1 <- density(x,kernel='gaussian',na.rm=TRUE) > plot(mydensity1,main='Density Plot - Gaussian Kernel',xlab='Median (0 -> full line) | Mean (0 -> dashed line)',ylab='density') > abline(v=e,lty=1) > abline(v=m,lty=5) > grid() > myseq <- seq(0.01, 0.99, 0.01) > hd <- hdquantile(x, probs = myseq, se = TRUE, na.rm = FALSE, names = TRUE, weights=FALSE) > plot(myseq,hd,col=2,main='Harrell-Davis Quantiles',xlab='quantiles',ylab='Median (0 -> full) | Mean (0 -> dashed)') > abline(h=m,lty=5) > abline(h=e,lty=1) > grid() > par(op) > dev.off() null device 1 > > #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,'Median versus Mean',2,TRUE) > a<-table.row.end(a) > a<-table.row.start(a) > a<-table.element(a,'mean',header=TRUE) > a<-table.element(a,mean(x)) > a<-table.row.end(a) > a<-table.row.start(a) > a<-table.element(a,'median',header=TRUE) > a<-table.element(a,median(x)) > a<-table.row.end(a) > a<-table.end(a) > table.save(a,file="/var/www/html/rcomp/tmp/2jdhp1268603749.tab") > > try(system("convert tmp/1ik8w1268603749.ps tmp/1ik8w1268603749.png",intern=TRUE)) character(0) > > > proc.time() user system elapsed 0.720 0.271 0.830