eval_stat {TestCor} | R Documentation |
Evaluates the test statistics for tests on correlation matrix entries.
Description
Evaluates the test statistics for tests on correlation matrix entries.
Usage
eval_stat(data, type = "empirical")
Arguments
data |
matrix of observations |
type |
|
Value
Returns the test statistics for correlation testing.
Examples
n <- 100
p <- 10
corr_theo <- diag(1,p)
data <- MASS::mvrnorm(n,rep(0,p),corr_theo)
stat <- eval_stat(data,'fisher')
[Package TestCor version 0.0.2.2 Index]