powered by
A function for unifying the reliabilities of multiple tests
uniRel(rel, b = NULL, corm)
A single value of the class `numeric` representing the unified reliability estimate across multiple tests
Vector of reliabilities of the tests
Vector of weightings for the reliabilities; must match order of `rel`. Default: 1
Correlation matrix of the tests; must be square with 1s on the diagonal
rel = c(0.70, 0.90, 0.80) b = c(1, 1, 1) corm = matrix(c(1, 0.50, 0.35, 0.50, 1, 0.75, 0.35, 0.70, 1), nrow = 3, ncol = 3) uniRel(rel, b, corm)
Run the code above in your browser using DataLab