MetricsWeighted (version 0.3.0)

weighted_mean: Weighted Mean

Description

Returns weighted mean of a numeric vector. In contrast to stats::weighted.mean, w does not need to be specified.

Usage

weighted_mean(x, w = NULL, ...)

Arguments

x

Numeric vector.

w

Optional non-negative, non-missing case weights.

...

Further arguments passed to mean or weighted.mean.

Value

A length-one numeric vector.

See Also

weighted_quantile.

Examples

Run this code
# NOT RUN {
weighted_mean(1:10)
weighted_mean(1:10, w = NULL)
weighted_mean(1:10, w = 1:10)
# }

Run the code above in your browser using DataLab