Learn R Programming

sjmisc (version 1.1)

weight: Weight a variable

Description

This function weights the variable x by a specific vector of weights.

Usage

weight(x, weights)

Arguments

x
(Unweighted) variable
weights
Vector with same length as x, which contains weight factors. Each value of x has a specific assigned weight in weights.

Value

  • The weighted x.

See Also

weight2

Examples

Run this code
v <- sample(1:4, 20, TRUE)
table(v)
w <- abs(rnorm(20))
table(weight(v, w))

Run the code above in your browser using DataLab