Description Usage Arguments Value Note Author(s) References Examples
Estimates the d of a composite.
1 | dComposite(rxx, d_vec, wt_vec = rep(1, length(d_vec)))
|
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. |
A vector of correlation coefficients.
This is essentially the same function as solveWt().
Jeff Jones and Allen Goebl
Sackett, P. R., & Ellingson, J. E. (1997). Personnel Psychology., 50(3), 707-721.
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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.