reliabate: Disattenuate a correlation matrix using an estimate of the...

Description Usage Arguments Value Author(s) Examples

Description

Disattenuate a correlation matrix using an estimate of the component reliabilities

Usage

1
reliabate(r_mat, rel_vec)

Arguments

r_mat

A correlation matrix

rel_vec

A vector or reliabilities.

Value

A reliabated (disattenauted) correlation matrix.

Author(s)

Allen Goebl and Jeff Jones

Examples

1
2
3
4
5
r_mat <- matrix(c(1.00, 0.25, 0.30, 
                  0.25, 1.00, 0.50, 
                  0.30, 0.50, 1.00), 3, 3)
rel   <- c(.70, .64, .81)
reliabate(r_mat = r_mat, rel_vec = rel)

iopsych documentation built on May 2, 2019, 2:27 p.m.