covDcorNorm {TestCor} | R Documentation |
Returns the theoretical covariance of test statistics for correlation testing.
Description
Returns the theoretical covariance of test statistics for correlation testing.
Usage
covDcorNorm(cor_mat, stat_test = "empirical")
Arguments
cor_mat |
A correlation matrix |
stat_test |
|
Value
Returns the theoretical covariance of the test statistics.
See Also
covDcor, covD2nd, eval_stat
Examples
p <- 10
corr_theo <- diag(1,p)
corr_theo[2:p,] <- 0.3
corr_theo[,2:p] <- 0.3
covDcorNorm(corr_theo,stat_test='student')
[Package TestCor version 0.0.2.2 Index]