R/hd.R

Defines functions hd

hd<-function(x,q=.5,na.rm=TRUE,STAND=NULL){
  #
  #  Compute the Harrell-Davis estimate of the qth quantile
  #
  #  The vector x contains the data,
  #  and the desired quantile is q
  #  The default value for q is .5.
  #
  if(na.rm)x=elimna(x)
  n<-length(x)
  m1<-(n+1)*q
  m2<-(n+1)*(1-q)
  vec<-seq(along=x)
  w<-pbeta(vec/n,m1,m2)-pbeta((vec-1)/n,m1,m2)  # W sub i values
  y<-sort(x)
  hd<-sum(w*y)
  hd
}

Try the WRS2 package in your browser

Any scripts or data that you put into this service are public.

WRS2 documentation built on March 19, 2024, 3:08 a.m.