powered by
A function for unifying the correlations of multiple tests with a criterion (i.e., the validity)
uniVal(val, b = NULL, corm)
A single value of the class `numeric` representing the unified validity estimate across multiple tests
Vector of validities of the tests
Vector of weightings for the validities; must match order of `val`. Default: 1
Correlation matrix of the tests; must be square with 1s on the diagonal
val = c(0.20, 0.40, 0.30) 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) uniVal(val, b, corm)
Run the code above in your browser using DataLab