R version 2.8.1 (2008-12-22) Copyright (C) 2008 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(5.10,5.21,5.31,5.34,5.44,5.47,5.60,5.68,5.76,6.03,6.14,6.54,6.50,6.43,6.93,6.77,6.58,6.55,6.41,6.28,6.18,6.35,6.17,6.04,5.68,5.43,5.43,5.38,5.28,5.33,5.35,5.31,5.24,5.12,5.04,5.03,4.98,4.98,5.09,5.12,5.07,5.05,5.05,5.05,5.03,5.11,5.19,5.14,4.97,4.94,4.93,4.92,4.90,4.90,4.82,4.81,4.72,4.54,4.51,4.30,4.08,4.05,4.03,3.85,3.80,3.91,3.99,4.08,5.15,4.78,4.79,4.79,4.69,4.82,4.98,5.12,5.55,5.65,5.66,5.74,5.76,5.91,5.92,5.74,5.25,5.06,4.84,4.66,4.38,4.14,4.11,3.96,3.51,3.00,2.75,2.63,2.58,2.63,2.69,2.69,2.69,2.67,2.63,2.57,2.56,2.52,2.29,2.18,2.10,2.02,1.91,1.92,1.85,1.64,1.62,1.64,1.65,1.65,1.67,1.66,1.61,1.59,1.57,1.60,1.67,1.81,1.88,1.92,2.01,2.12,2.24,2.34,2.41,2.48,2.59,2.65,2.70,2.77,2.87,2.97,3.03,3.19,3.36,3.48,3.56,3.68,3.82,3.93,4.04,4.19,4.30,4.33,4.36,4.44,4.49,4.52) > par3 = '0.005' > par2 = '0.99' > par1 = '0.01' > ylab = 'value' > xlab = 'quantile' > main = 'Harrell-Davis Quantiles' > #'GNU S' R Code compiled by R2WASP v. 1.0.44 () > #Author: Prof. Dr. P. Wessa > #To cite this work: Wessa, (2007), Harrell-Davis Quantile Estimator (v1.0.11) in Free Statistics Software (v$_version), Office for Research Development and Education, URL http://www.wessa.net/rwasp_harrell_davies.wasp/ > #Source of accompanying publication: Office for Research, Development, and Education > #Technical description: #Hmisc library > #v 1.0.2, 1 sept. 2006: fixed buffer overflow in R interpreter (thanks to John J. Ely, Ph.D.) > par1 <- as(par1,'numeric') > par2 <- as(par2,'numeric') > par3 <- as(par3,'numeric') > 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 > myseq <- seq(par1, par2, par3) > hd <- hdquantile(x, probs = myseq, se = TRUE, na.rm = FALSE, names = TRUE, weights=FALSE) > postscript(file="/var/www/rcomp/tmp/1u7jl1255944075.ps",horizontal=F,pagecentre=F,paper="special",width=8.3333333333333,height=5.5555555555556) > plot(myseq,hd,col=2,main=main,xlab=xlab,ylab=ylab) > grid() > dev.off() null device 1 > > #Note: the /var/www/rcomp/createtable file can be downloaded at http://www.wessa.net/cretab > load(file="/var/www/rcomp/createtable") > > a<-table.start() > a<-table.row.start(a) > a<-table.element(a,'Harrell-Davis Quantiles',3,TRUE) > a<-table.row.end(a) > a<-table.row.start(a) > a<-table.element(a,'quantiles',header=TRUE) > a<-table.element(a,'value',header=TRUE) > a<-table.element(a,'standard error',header=TRUE) > a<-table.row.end(a) > length(hd) [1] 197 > for (i in 1:length(hd)) + { + a<-table.row.start(a) + a<-table.element(a,as(labels(hd)[i],'numeric'),header=TRUE) + a<-table.element(a,as.matrix(hd[i])[1,1]) + a<-table.element(a,as.matrix(attr(hd,'se')[i])[1,1]) + a<-table.row.end(a) + } > a<-table.end(a) > table.save(a,file="/var/www/rcomp/tmp/2u0cj1255944075.tab") > > system("convert tmp/1u7jl1255944075.ps tmp/1u7jl1255944075.png") > > > proc.time() user system elapsed 1.160 0.350 1.495