nuisance_regression {fMRItools} | R Documentation |
Nuisance regression
Description
Performs nuisance regression. Important note: the data and design matrix must both be centered, or an intercept must be included in the design matrix.
Usage
nuisance_regression(Y, design)
Arguments
Y |
The |
design |
The |
Value
The data after nuisance regression.
Examples
Y <- matrix(rnorm(700), nrow=100)
design <- cbind(seq(100), 1)
nuisance_regression(Y, design)
[Package fMRItools version 0.4.7 Index]