Learn R Programming

isotone (version 1.1-1)

weighted.median: Weighted Median

Description

Computes a weighted median of a numeric vector

Usage

weighted.median(y, w)

Arguments

y

A numeric vector containing the values whose median is to be computed

w

A vector of length y giving the weights to use for each element of y

See Also

weighted.mean, weighted.fractile

Examples

Run this code
y <- 1:9
w <- c(rep(1,5), rep(2,4))
res <- weighted.median(y, w)

Run the code above in your browser using DataLab