uniVal {unifyR} | R Documentation |
uniVal
Description
A function for unifying the correlations of multiple tests with a criterion (i.e., the validity)
Usage
uniVal(val, b = NULL, corm)
Arguments
val |
Vector of validities of the tests |
b |
Vector of weightings for the validities; must match order of 'val'. Default: 1 |
corm |
Correlation matrix of the tests; must be square with 1s on the diagonal |
Value
A single value of the class 'numeric' representing the unified validity estimate across multiple tests
Examples
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)
[Package unifyR version 1.0.0 Index]