R/r.med.sub.R

Defines functions r.med.sub

Documented in r.med.sub

r.med.sub <-
function(x.sub, x, weight.sub, weight, k){
  n <- length(x)
  if(is.null(weight)){
    weight <- rep(1, n)
    weight.sub <- rep(1, length(x.sub))
  }  
    rhow <- k*weighted.median(x, weight)
    gap <- sum(sapply(1:length(x.sub), function(i){
      max(x.sub[i] - rhow, 0)*weight.sub[i]}))/sum(weight.sub)
    return(gap)
}

Try the affluenceIndex package in your browser

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

affluenceIndex documentation built on Jan. 5, 2022, 5:07 p.m.