cm13 | R Documentation |
Given data, it 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 based on a procedure proposed by Cai and Ma (2013).
cm13(X,Sigma0, alpha)
X |
an |
Sigma0 |
a |
alpha |
level of significance. |
a named list containing:
a test statistic value.
rejection criterion to be compared against test statistic.
a logical; TRUE
to reject null hypothesis, FALSE
otherwise.
## generate data from multivariate normal with trivial covariance.
p = 5;n=10
X=data = matrix(rnorm(n*p), ncol=p)
alpha=0.05
Sigma0=diag(ncol(X))
cm13(X,Sigma0, alpha)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.