Description Usage Arguments Details Value References See Also Examples
This function conducts factor-adjusted robust multiple testing (FarmTest) for means of multivariate data proposed in Fan et al. (2019) via a tuning-free procedure.
1 2 3 4 5 6 7 8 9 10 11 12 13 |
X |
An n by p data matrix with each row being a sample. |
fX |
An optional factor matrix with each column being a factor for |
KX |
An optional positive number of factors to be estimated for |
Y |
An optional data matrix used for two-sample FarmTest. The number of columns of |
fY |
An optional factor matrix for two-sample FarmTest with each column being a factor for |
KY |
An optional positive number of factors to be estimated for |
h0 |
An optional p-vector of true means, or difference in means for two-sample FarmTest. The default is a zero vector. |
alternative |
An optional character string specifying the alternate hypothesis, must be one of "two.sided" (default), "less" or "greater". |
alpha |
An optional level for controlling the false discovery rate. The value of |
p.method |
An optional character string specifying the method to calculate p-values when |
nBoot |
An optional positive integer specifying the size of bootstrap sample, only available when |
For two-sample FarmTest, means, stdDev, loadings, eigenVal, eigenRatio, nfactors and n will be lists of items for sample X and Y separately.
alternative = "greater" is the alternative that μ > μ_0 for one-sample test or μ_X > μ_Y for two-sample test.
Setting p.method = "bootstrap" for factor-known model will slow down the program, but it will achieve lower empirical FDP than setting p.method = "normal".
An object with S3 class farm.test containing the following items will be returned:
meansEstimated means, a vector with length p.
stdDevEstimated standard deviations, a vector with length p. It's not available for bootstrap method.
loadingsEstimated factor loadings, a matrix with dimension p by K, where K is the number of factors.
eigenValEigenvalues of estimated covariance matrix, a vector with length p. It's only available when factors fX and fY are not given.
eigenRatioRatios of eigenVal to estimate nFactors, a vector with length min(n, p) / 2. It's only available when number of factors KX and KY are not given.
nFactorsEstimated or input number of factors, a positive integer.
tStatValues of test statistics, a vector with length p. It's not available for bootstrap method.
pValuesP-values of tests, a vector with length p.
pAdjustAdjusted p-values of tests, a vector with length p.
significantBoolean values indicating whether each test is significant, with 1 for significant and 0 for non-significant, a vector with length p.
rejectIndices of tests that are rejected. It will show "no hypotheses rejected" if none of the tests are rejected.
typeIndicator of whether factor is known or unknown.
nSample size.
pData dimension.
h0Null hypothesis, a vector with length p.
alphaα value.
alternativeAlthernative hypothesis.
Ahn, S. C. and Horenstein, A. R. (2013). Eigenvalue ratio test for the number of factors. Econometrica, 81(3) 1203–1227.
Benjamini, Y. and Hochberg, Y. (1995). Controlling the false discovery rate: A practical and powerful approach to multiple testing. J. R. Stat. Soc. Ser. B. Stat. Methodol., 57 289–300.
Fan, J., Ke, Y., Sun, Q. and Zhou, W-X. (2019). FarmTest: Factor-adjusted robust multiple testing with approximate false discovery control. J. Amer. Statist. Assoc., 114, 1880-1893.
Huber, P. J. (1964). Robust estimation of a location parameter. Ann. Math. Statist., 35, 73–101.
Storey, J. D. (2002). A direct approach to false discovery rates. J. R. Stat. Soc. Ser. B. Stat. Methodol., 64, 479–498.
Sun, Q., Zhou, W.-X. and Fan, J. (2020). Adaptive Huber regression. J. Amer. Statist. Assoc., 115, 254-265.
Zhou, W-X., Bose, K., Fan, J. and Liu, H. (2018). A new perspective on robust M-estimation: Finite sample theory and applications to dependence-adjusted multiple testing. Ann. Statist., 46 1904-1931.
print.farm.test, summary.farm.test and plot.farm.test.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | n = 20
p = 50
K = 3
muX = rep(0, p)
muX[1:5] = 2
epsilonX = matrix(rnorm(p * n, 0, 1), nrow = n)
BX = matrix(runif(p * K, -2, 2), nrow = p)
fX = matrix(rnorm(K * n, 0, 1), nrow = n)
X = rep(1, n) %*% t(muX) + fX %*% t(BX) + epsilonX
# One-sample FarmTest with two sided alternative
output = farm.test(X)
# One-sample FarmTest with one sided alternative
output = farm.test(X, alternative = "less")
# One-sample FarmTest with known factors
output = farm.test(X, fX = fX)
# Two-sample FarmTest
muY = rep(0, p)
muY[1:5] = 4
epsilonY = matrix(rnorm(p * n, 0, 1), nrow = n)
BY = matrix(runif(p * K, -2, 2), nrow = p)
fY = matrix(rnorm(K * n, 0, 1), nrow = n)
Y = rep(1, n) %*% t(muY) + fY %*% t(BY) + epsilonY
output = farm.test(X, Y = Y)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.