weighted_mean {MetricsWeighted} | R Documentation |
Weighted Mean
Description
Returns the 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 vector of non-negative case weights. |
... |
Further arguments passed to |
Value
A length-one numeric vector.
See Also
Examples
weighted_mean(1:10)
weighted_mean(1:10, w = NULL)
weighted_mean(1:10, w = 1:10)
[Package MetricsWeighted version 1.0.3 Index]