weightedMean: Weighted mean

Description Usage Arguments Details Value Author(s) See Also Examples

View source: R/weightedMean.R

Description

Compute the weighted mean.

Usage

1
weightedMean(x, weights = NULL, na.rm = FALSE)

Arguments

x

a numeric vector.

weights

an optional numeric vector giving the sample weights.

na.rm

a logical indicating whether missing values in x should be omitted.

Details

This is a simple wrapper function calling weighted.mean if sample weights are supplied and mean otherwise.

Value

The weighted mean of values in x is returned.

Author(s)

Andreas Alfons

See Also

incMean

Examples

1
2
data(eusilc)
weightedMean(eusilc$eqIncome, eusilc$rb050)

laeken documentation built on Oct. 6, 2021, 5:07 p.m.