getApproxCovar: Obtain a null covariance matrix of binned test statistics

View source: R/F_getApproxCovar.R

getApproxCovarR Documentation

Obtain a null covariance matrix of binned test statistics

Description

Obtain a null covariance matrix of binned test statistics

Usage

getApproxCovar(statsPerm, ...)

Arguments

statsPerm

The pxB matrix of permutation z-values in the columns

...

passed on to binStats

Value

The covariance matrix of binned z-values

Note

This is not the covariance matrix of the p test statistic, nor of the data! It is an approximate covariance matrix of binned test statistics for visualization and diagnostic purposes.

Examples

p = 200; n = 50; B = 5e1
x = rep(c(0,1), each = n/2)
mat = cbind(
matrix(rnorm(n*p/10, mean = 5+x),n,p/10), #DA
matrix(rnorm(n*p*9/10, mean = 5),n,p*9/10) #Non DA
)
mat = mat = mat + rnorm(n, sd = 0.3) #Introduce some dependence
fdrRes = reconsi(mat, x, B = B)
corMat = getApproxCovar(fdrRes$statsPerm)

CenterForStatistics-UGent/rransi documentation built on Nov. 13, 2023, 2:07 a.m.