FD | R Documentation |
Calculate Framewise Displacement (FD)
FD(
X,
trans_units = c("mm", "cm", "in"),
rot_units = c("deg", "rad", "mm", "cm", "in"),
brain_radius = NULL,
detrend = FALSE,
lag = 1,
cutoff = 0.3
)
X |
An Alternatively, this can be the file path to an |
trans_units |
|
rot_units |
|
brain_radius |
If If |
detrend |
Detrend each RP with the DCT before computing FD?
Default: |
lag |
The difference of indices between which to calculate change in
position. Default: |
cutoff |
FD values higher than this will be flagged. Default: |
The FD formula is taken from Power et. al. (2012):
FD_i = | \Delta x_i | + | \Delta y_i | + | \Delta z_i | + | \Delta \alpha_i | + | \Delta \beta_i | + | \Delta \gamma_i |
where i
is the timepoint; x
, y
and z
are the
translational realignment parameters (RPs);
\alpha
, \beta
and \gamma
are the rotational RPs;
and \Delta x_i = x_{i-1} - x_i
(and similarly for the other RPs).
A list with components
A length N
vector of FD values in trans_units
.
"FD"
cutoff
A length-N logical vector, where TRUE
indicates suspected outlier presence.
Power, J. D., Barnes, K. A., Snyder, A. Z., Schlaggar, B. L. & Petersen, S. E. Spurious but systematic correlations in functional connectivity MRI networks arise from subject motion. Neuroimage 59, 2142-2154 (2012).
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.