weighted.quantile.Rd
Computes the weighted quantiles of a distribution.
weighted.quantile(x, weights = NULL, probs = seq(0, 1, 0.25),
na.rm = FALSE, names = FALSE)
numeric vector whose sample quantiles are wanted
numeric vector of weights. If NULL (default), uniform weights (i.e. all equal to 1) are used.
numeric vector of probabilities with values in [0,1]
logical, indicating whether NA values should be silently removed before the computation proceeds. Default is FALSE.
logical. if TRUE, the result has a names attribute. Default is FALSE.
A numeric vector of the same length as probs
argument.
This function is taken from https://stackoverflow.com/questions/2748725/is-there-a-weighted-median-function