randomise {brainGraph} | R Documentation |
GLM non-parametric permutation testing
Description
randomise
and randomise_3d
perform non-parametric permutation
testing for analyses in which there is a single or multiple design matrix per
region, respectively. In the latter case, X
should be a 3D array.
partition
partitions a full design matrix into separate matrices of
covariates of interest and nuisance covariates based on a given contrast and
partition method.
Usage
partition(M, contrast, part.method = c("beckmann", "guttman", "ridgway"))
randomise(perm.method, part.method, N, perms, X, y, contrasts, ctype, nC,
skip = NULL, n = dim(X)[1L], p = qr.default(X)$rank,
ny = dim(y)[2L], dfR = n - p)
randomise_3d(perm.method, part.method, N, perms, X, y, contrasts, ctype,
nC, runX = dimnames(X)[[3L]], n = dim(X)[1L], p = qr.default(X[, ,
1L])$rank, ny = length(runX), dfR = n - p)
Arguments
M |
Numeric matrix or array of the full design matrix(es) |
contrast |
For |
part.method |
Character string; the method of partitioning the design
matrix into covariates of interest and nuisance. Default: |
perm.method |
Character string indicating the permutation method.
Default: |
N |
Integer; number of permutations to create. Default: |
perms |
Matrix of permutations, if you would like to provide your own.
Default: |
X |
Numeric matrix or 3D array of the design matrix(es) |
y |
Numeric matrix of outcome variables, with 1 column per region, or a single column if there is a different design matrix per region |
contrasts |
Numeric matrix (for T statistics) or list of matrices (for F statistics) specifying the contrast(s) of interest; if only one contrast is desired, you can supply a vector (for T statistics) |
ctype |
The contrast type |
nC |
Integer; the number of contrasts |
skip |
Integer vector indicating which (if any) contrasts to skip. Only
used by |
n , p , ny , dfR |
Integers for the number of observations, design matrix columns (its rank), number of regions/outcome variables, and residual degrees of freedom, respectively |
runX |
Character vector of regions with non-singular designs |
Value
partition
returns a list containing:
Mp |
Numeric array; the combined partitioned arrays |
X |
Numeric array for the covariates of interest |
Z |
Numeric array for the nuisance covariates |
eCm |
The effective contrast, equivalent to the original, for
the partitioned model |
eCx |
Same as |
A numeric array with dimensions n_y \times N \times n_c
;
the number of rows equals number of regions/outcome variables, number of
columns equals N
, and the 3rd dimension is the number of contrasts
Model partitioning
Consider the matrix formulation of the general linear model:
\mathbf{Y} = \mathbf{M} \psi + \in
where Y
is the vector of outcomes, M
is the full design matrix
(including nuisance covariates), \psi
is the vector of parameter
estimates, and \in
is the vector of error terms. In a permutation
framework, algorithms are applied differently depending on the
presence/absence of nuisance covariates; thus the model is separated
depending on the contrast of interest:
\mathbf{Y} = \mathbf{X}\beta + \mathbf{Z}\gamma + \in
where \mathbf{X}
contains covariates of interest, \mathbf{Z}
contains nuisance covariates, and \beta
and \gamma
are the
associated parameter estimates.
The manner of partitioning depends on the method. For example, for the
guttman
method, X
is formed from the columns of contrast
that have non-zero entries.
Permutation methods
The permutation methods can be split into 2 groups, depending on which part of the model they permute. For full details, see Winkler et al., 2014.
- Permute Y
Freedman-Lane, Manly, and ter Braak
- Permute X
Smith, Draper-Stoneman, and Still-White
Depending on the size of the data, it may be faster to use a method that
permutes Y
instead of X
. For example, in NBS
with
dense matrices (more than 400-500 edges), it will be somewhat faster to use
the “Smith” method compared to “Freedman-Lane”. If using
brainGraph_GLM
, the number of vertices follows the same
relationship.
Furthermore, all methods except Still-White include the Z
(nuisance
covariate) matrix when calculating the permuted statistics.
References
Beckmann, C.F. and Jenkinson, M. and Smith, S.M. (2001) General multi-level linear modelling for group analysis in FMRI. Tech Rep. University of Oxford, Oxford.
Guttman, I. (1982) Linear Models: An Introduction. Wiley, New York.
Ridgway, G.R. (2009) Statistical analysis for longitudinal MR imaging of dementia. PhD thesis.
Draper, N.R. and Stoneman, D.M. (1966) Testing for the inclusion of variables in linear regression by a randomisation technique. Technometrics. 8(4), 695–699.
Freedman, D. and Lane, D. (1983) A nonstochastic interpretation of reported significance levels. J Bus Econ Stat, 1(4), 292–298. doi: 10.1080/07350015.1983.10509354
Manly B.F.J. (1986) Randomization and regression methods for testing for associations with geographical, environmental, and biological distances between populations. Res Popul Ecol. 28(2), 201–218.
Nichols, T.E. and Holmes, A.P. (2001) Nonparametric permutation tests for functional neuroimaging: A primer with examples. Human Brain Mapping. 15(1), 1–25. doi: 10.1002/hbm.1058
Smith, S.M. and Jenkinson, M. and Beckmann, C. and Miller, K. and Woolrich, M. (2007) Meaningful design and contrast estimability in fMRI. NeuroImage. 34(1), 127–36. doi: 10.1016/j.neuroimage.2006.09.019
Still, A.W. and White, A.P. (1981) The approximate randomization test as an alternative to the F test in analysis of variance. Br J Math Stat Psychol. 34(2), 243–252.
ter Braak, C.J.F. 1992. Permutation versus bootstrap significance tests in multiple regression and ANOVA. Bootstrapping and related techniques. Springer, Berlin, Heidelberg. 79–85.
Winkler, A.M. and Ridgway, G.R. and Webster, M.A. and Smith, S.M. and Nichols, T.E. (2014) Permutation inference for the general linear model. NeuroImage. 92, 381–397. doi: 10.1016/j.neuroimage.2014.01.060