powered by
Calculates weighted median. For odd sample sizes consistent with unweighted quantiles.
weighted_median(x, w = NULL, ...)
Numeric vector.
Optional non-negative case weights.
Further arguments passed to weighted_quantile.
weighted_quantile
weighted_quantile.
n <- 21 x <- seq_len(n) quantile(x, probs = 0.5) weighted_median(x, w = rep(1, n)) weighted_median(x, w = x) quantile(rep(x, x), probs = 0.5)
Run the code above in your browser using DataLab