View source: R/check_incongruous.R
check_incongruous | R Documentation |
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.
check_incongruous(zMatrix, lfdrVec)
zMatrix |
J*K vector of all test statistics. |
lfdrVec |
J*1 vector of lfdr values corresponding to each set of test statistics. |
A vector with all the indices of all sets that have a higher lfdr value those a set with smaller test statistic magnitudes.
zMatrix <- cbind(rnorm(10^4), rnorm(10^4))
lfdrVec <- runif(10^4)
check_incongruous(zMatrix = zMatrix, lfdrVec = lfdrVec)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.