x <- c(260288,261544,259886,257006,259670,258873,264416,263596,262586,260237,261690,259295,264170,264451,265538,261723,266189,265073,267007,266376,267406,262742,260300,263074,265940,264771,268403,264264,264118,266817,269296,269001,266707,267507,267510,267420,270845,270671,273653,271567,268372,268160,267879,271142,271323,269478,271008,269145,271684,273582,279475,276188,278422,281084,278618,280738,288897,282129,286406,284288,286139,288275,287670,286864,288798,288316,286915,288006,293338,303730,306248,305700,314849) #'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) m <- mean(x) e <- median(x) postscript(file="/var/www/html/rcomp/tmp/1kls81237483495.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() #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/2j5xz1237483495.tab") system("convert tmp/1kls81237483495.ps tmp/1kls81237483495.png")