check_incongruous {csmGmm} | R Documentation |
check_incongruous.R
Description
Check the number of sets of test statistics that have a higher (less significant) lfdr value than other sets with test statistics of uniformly smaller magnitudes.
Usage
check_incongruous(zMatrix, lfdrVec)
Arguments
zMatrix |
J*K vector of all test statistics. |
lfdrVec |
J*1 vector of lfdr values corresponding to each set of test statistics. |
Value
A vector with all the indices of all sets that have a higher lfdr value those a set with smaller test statistic magnitudes.
Examples
zMatrix <- cbind(rnorm(10^4), rnorm(10^4))
lfdrVec <- runif(10^4)
check_incongruous(zMatrix = zMatrix, lfdrVec = lfdrVec)
[Package csmGmm version 0.3.0 Index]