This function computes the reliability of a variable that is a weighted or unweighted composite of other variables.
composite_rel_matrix(rel_vec, r_mat, sd_vec, wt_vec = rep(1, length(rel_vec)))
Vector of reliabilities associated with variables in the composite to be formed.
Correlation matrix from which the composite is to be computed.
Vector of standard deviations associated with variables in the composite to be formed.
Weights to be used in forming the composite (by default, all variables receive equal weight).
The estimated reliability of the composite variable.
This function treats measure-specific variance as reliable.
The Mosier composite formula is computed as:
where
Mosier, C. I. (1943). On the reliability of a weighted composite. Psychometrika, 8(3), 161<U+2013>168. https://doi.org/10.1007/BF02288700
Schmidt, F. L., & Hunter, J. E. (2015). Methods of meta-analysis: Correcting error and bias in research findings (3rd ed.). Thousand Oaks, CA: Sage. https://doi.org/10/b6mg. pp. 441 - 447.
# NOT RUN {
composite_rel_matrix(rel_vec = c(.8, .8),
r_mat = matrix(c(1, .4, .4, 1), 2, 2), sd_vec = c(1, 1))
# }
Run the code above in your browser using DataLab