norm_BOLD {templateICAr} | R Documentation |
Normalize BOLD data
Description
Center the data across space and/or time, detrend, and scale, in that order. For dual regression, row centering is required and column centering is not recommended. Scaling and detrending depend on the user preference.
Usage
norm_BOLD(
BOLD,
center_rows = TRUE,
center_cols = FALSE,
scale = c("global", "local", "none"),
scale_sm_xifti = NULL,
scale_sm_FWHM = 2,
detrend_DCT = 0
)
Arguments
BOLD |
fMRI numeric data matrix ( |
center_rows , center_cols |
Center BOLD data across rows (each data
location's time series) or columns (each time point's image)? Default:
|
scale |
|
scale_sm_xifti , scale_sm_FWHM |
Only applies if |
detrend_DCT |
Detrend the data? This is an integer number of DCT bases
to use for detrending. If |
Value
Normalized BOLD data matrix (V \times T
)