CovTest1: One-Sample Tests for Covariance Matrices
Description
Given data, CovTest1 performs 1-sample test for Covariance where
the null hypothesis is
$$H_0 : \Sigma_n = \Sigma_0$$
where \(\Sigma_n\) is the covariance of data model and \(\Sigma_0\) is a
hypothesized covariance.
# NOT RUN {## generate data from multivariate normal with trivial covariance.data = mvtnorm::rmvnorm(100, sigma=diag(5))
## run testCovTest1(data, Sigma0=diag(5))
# }