dComposite: Estimates the d of a composite.

Description Usage Arguments Value Note Author(s) References Examples

Description

Estimates the d of a composite.

Usage

1
dComposite(rxx, d_vec, wt_vec = rep(1, length(d_vec)))

Arguments

rxx

A matrix of predictor intercorrelations.

d_vec

A vector containing d's for each predictor.

wt_vec

A vector containing the weights of each item in rxx.

Value

A vector of correlation coefficients.

Note

This is essentially the same function as solveWt().

Author(s)

Jeff Jones and Allen Goebl

References

Sackett, P. R., & Ellingson, J. E. (1997). Personnel Psychology., 50(3), 707-721.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
Rxx <- matrix(.3, 3, 3); diag(Rxx) <- 1
ds  <- c(.2, .4, .3)
dComposite(rxx = Rxx, d_vec = ds)

Rxx <- matrix(c(1.0, 0.3, 0.2, 
                0.3, 1.0, 0.1,
                0.2, 0.1, 1.0), 3, 3)
ds  <- c(.1, .3, .7)
ws  <- c(1, .5, .5)
dComposite(rxx = Rxx, d_vec = ds, wt_vec = ws)

allengoebl/iopsych documentation built on May 10, 2019, 9:22 a.m.