dual_reg | R Documentation |
Dual Regression
dual_reg(
BOLD,
GICA,
scale = c("local", "global", "none"),
scale_sm_xifti = NULL,
scale_sm_FWHM = 2,
TR = NULL,
hpf = 0.01,
lpf = NULL,
GSR = FALSE
)
BOLD |
Subject-level fMRI data matrix ( |
GICA |
Group-level independent components ( |
scale |
|
scale_sm_xifti , scale_sm_FWHM |
Only applies if |
TR |
The temporal resolution of the data, i.e. the time between volumes,
in seconds. |
hpf , lpf |
The frequencies at which to apply a highpass filter or lowpass
filter to the data during pre-processing, in Hertz. Set either to
The highpass filter serves to detrend the data, since low-frequency variance is associated with noise. Highpass filtering is accomplished by nuisance regression of discrete cosine transform (DCT) bases. The lowpass filter removes high-frequency variance also thought to be associated with non-neuronal noise. Note the |
GSR |
Center BOLD across columns (each image)? This
is equivalent to performing global signal regression. Default:
|
A list containing
the subject-level independent components S (V \times Q
),
and subject-level mixing matrix A (TxQ
).
nT <- 30
nV <- 400
nQ <- 7
mU <- matrix(rnorm(nV*nQ), nrow=nV)
mS <- mU %*% diag(seq(nQ, 1)) %*% matrix(rnorm(nQ*nT), nrow=nQ)
BOLD <- mS + rnorm(nV*nT, sd=.05)
GICA <- mU
dual_reg(BOLD=BOLD, GICA=mU, scale="local")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.