Send output to:
Browser Blue - Charts White
Browser Black/White
CSV
Data:
41 39 30 31 34 35 39 34 36 37 38 36 38 39 33 32 36 38 39 32 32 31 39 37 39 41 36 33 33 34 31 27 37 34 34 32 29 36 29 35 37 34 38 35 38 37 38 33 36 38 32 32 32 34 32 37 39 29 37 35 30 38 34 31 34 35 36 30 39 35 38 31 34 38 34 39 37 34 28 37 33 37 35 37 32 33 38 33 29 33 31 36 35 32 29 39 37 35 37 32 38 37 36 32 33 40 38 41 36 43 30 31 32 32 37 37 33 34 33 38 33 31 38 37 33 31 39 44 33 35 32 28 40 27 37 32 28 34 30 35 31 32 30 30 31 40 32 36 32 35 38 42 34 35 35 33 36 32 33 34 32 34
Sample Range:
(leave blank to include all observations)
From:
To:
lowest quantile
highest quantile
step size
Chart options
Title:
Label y-axis:
Label x-axis:
R Code
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) bitmap(file='test1.png') plot(myseq,hd,col=2,main=main,xlab=xlab,ylab=ylab) grid() dev.off() load(file='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='mytable.tab')
Compute
Summary of computational transaction
Raw Input
view raw input (R code)
Raw Output
view raw output of R engine
Computing time
0 seconds
R Server
Big Analytics Cloud Computing Center
Click here to blog (archive) this computation