print.farm.test {FarmTest} | R Documentation |
Print method for farm.test
objects
## S3 method for class 'farm.test' print(x, ...)
x |
A |
... |
Further arguments passed to or from other methods. |
A list with the following items:
means |
estimated means |
stderr |
estimated standard errors |
pvalue |
unadjusted p values |
rejected |
the indices of rejected hypotheses, along with their corresponding p values, and adjusted p values, ordered from most significant to least significant |
alldata |
all the indices of the tested hypotheses, along with their corresponding p values, adjusted p values, and a column with 1 if declared siginificant and 0 if not |
loadings |
estimated factor loadings |
nfactors |
number of (estimated) factors |
n |
number of observations |
p |
number of dimensions |
alpha |
level at which FDR was controlled |
H0 |
null hypothesis |
alternative |
alternate hypothesis |
robust |
whether robust parameters were used |
type |
whether the test is one or two-sided |
significant |
the number of means that are found significant |
set.seed(100) p = 50 n = 100 X = matrix(rnorm( p*n, 0,1), nrow = n) output = farm.test(X) output names(output)