DiagTest1.2015Lan {CovTools} | R Documentation |
One-Sample Diagonality Test by Lan et al. (2015)
Description
Given data, it performs 1-sample test for diagonal entries of a Covariance matrix where the null hypothesis is
H_0 : \sigma_{ij} = 0~\mathrm{for any}~i \neq j
and alternative hypothesis is H_1 : ~\mathrm{not}~H_0
with \Sigma_n = (\sigma_{ij})
based on a procedure proposed by Lan et al. (2015).
Usage
DiagTest1.2015Lan(data, alpha = 0.05)
Arguments
data |
an |
alpha |
level of significance. |
Value
a named list containing:
- statistic
a test statistic value.
- threshold
rejection criterion to be compared against test statistic.
- reject
a logical;
TRUE
to reject null hypothesis,FALSE
otherwise.
References
Lan W, Luo R, Tsai C, Wang H, Yang Y (2015). “Testing the Diagonality of a Large Covariance Matrix in a Regression Setting.” Journal of Business \& Economic Statistics, 33(1), 76–86. ISSN 0735-0015, 1537-2707.
Examples
## Not run:
## generate data from multivariate normal with trivial covariance.
pdim = 5
data = matrix(rnorm(100*pdim), ncol=pdim)
## run test with different alpha values
DiagTest1.2015Lan(data, alpha=0.01)
DiagTest1.2015Lan(data, alpha=0.05)
DiagTest1.2015Lan(data, alpha=0.10)
## End(Not run)