x <- c(278.1,283.3,287,287.9,279.7,273.2,272.6,274.8,277.2,277.5,278.7,279,280.1,280.8,280.1,270.5,260,258.2,260.1,262.2,263.4,264.7,267.4,266.8,265.2,262.5,255,252.8,249.6,254.2,259.4,260.8,261.6,257.2,249.8,235.2,227.4,223.1,221.6,218.5,220.1,222.1,222.9,222.8,222.1,209,201.7,204.5,208.7,213,218.6,221.9,224.6,226.8,229.6,231.4,229.1,232.7,236.6,242.2,251.5,261.5,266.4,280.9,294.4,308.8,328.8,348.2,365.9,387.5,395.9,395.8) par3 = '0.01' 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: 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!) par1 <- as(par1,'numeric') par2 <- as(par2,'numeric') par3 <- as(par3,'numeric') library(Hmisc) myseq <- seq(par1, par2, par3) hd <- hdquantile(x, probs = myseq, se = TRUE, na.rm = FALSE, names = TRUE, weights=FALSE) postscript(file="/var/www/html/rcomp/tmp/1laig1267986405.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() #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,'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) 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/html/rcomp/tmp/2i5k31267986405.tab") try(system("convert tmp/1laig1267986405.ps tmp/1laig1267986405.png",intern=TRUE))