R version 3.0.2 (2013-09-25) -- "Frisbee Sailing" Copyright (C) 2013 The R Foundation for Statistical Computing Platform: x86_64-pc-linux-gnu (64-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(133448.00 + ,132951.00 + ,132447.00 + ,131404.00 + ,141722.00 + ,141176.00 + ,133448.00 + ,128310.00 + ,128807.00 + ,128807.00 + ,129360.00 + ,130354.00 + ,131901.00 + ,131901.00 + ,130907.00 + ,128310.00 + ,141722.00 + ,143766.00 + ,140679.00 + ,133448.00 + ,136542.00 + ,131901.00 + ,133994.00 + ,134995.00 + ,136038.00 + ,133448.00 + ,133994.00 + ,130354.00 + ,141722.00 + ,145313.00 + ,142226.00 + ,136542.00 + ,142723.00 + ,136038.00 + ,142226.00 + ,141722.00 + ,143269.00 + ,137585.00 + ,143766.00 + ,143269.00 + ,152544.00 + ,150451.00 + ,142226.00 + ,138082.00 + ,143766.00 + ,136038.00 + ,141722.00 + ,142723.00 + ,144816.00 + ,140182.00 + ,142723.00 + ,144270.00 + ,149954.00 + ,145313.00 + ,139132.00 + ,132447.00 + ,138635.00 + ,121625.00 + ,129857.00 + ,134491.00 + ,139132.00 + ,132447.00 + ,132447.00 + ,132447.00 + ,136038.00 + ,130907.00 + ,124173.00 + ,118538.00 + ,122626.00 + ,106666.00 + ,116445.00 + ,122129.00 + ,123172.00 + ,117488.00 + ,117985.00 + ,116445.00 + ,121625.00 + ,117985.00 + ,110810.00 + ,105623.00 + ,114394.00 + ,95347.00 + ,107716.00 + ,113351.00 + ,113351.00 + ,106666.00 + ,100485.00 + ,99988.00 + ,105623.00 + ,100485.00 + ,90713.00 + ,83979.00 + ,91210.00 + ,74207.00 + ,89663.00 + ,97888.00 + ,100485.00 + ,94801.00 + ,87619.00 + ,92757.00 + ,94801.00 + ,93254.00 + ,77791.00 + ,70616.00 + ,75747.00 + ,60291.00 + ,76251.00 + ,81935.00 + ,86569.00 + ,78841.00 + ,71610.00 + ,75747.00 + ,77791.00 + ,73703.00 + ,58247.00 + ,51513.00 + ,57694.00 + ,40691.00 + ,59241.00 + ,70616.00) > par3 = '0.1' > par2 = '0.9' > par1 = '0.1' > ylab = 'value' > xlab = 'quantile' > main = 'Harrell-Davis Decielen' > par3 <- '0.1' > par2 <- '0.9' > par1 <- '0.1' > #'GNU S' R Code compiled by R2WASP v. 1.2.291 () > #Author: root > #To cite this work: Wessa, (2012), Harrell-Davis Quantile Estimator (v1.0.13) in Free Statistics Software (v$_version), Office for Research Development and Education, URL http://www.wessa.net/rwasp_harrell_davis.wasp/ > #Source of accompanying publication: Office for Research, Development, and Education > # > par1 <- as(par1,'numeric') > par2 <- as(par2,'numeric') > par3 <- as(par3,'numeric') > library(Hmisc) Loading required package: grid Loading required package: lattice Loading required package: survival Loading required package: splines Loading required package: Formula Attaching package: 'Hmisc' The following objects 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/wessaorg/rcomp/tmp/1k38y1439650867.ps",horizontal=F,onefile=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/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,'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] 9 > 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/wessaorg/rcomp/tmp/2jfk91439650867.tab") > > try(system("convert tmp/1k38y1439650867.ps tmp/1k38y1439650867.png",intern=TRUE)) character(0) > > > proc.time() user system elapsed 0.916 0.088 1.003