Differences between revisions 27 and 40 (spanning 13 versions)
Revision 27 as of 2012-12-05 01:29:51
Size: 4835
Editor: jbernal
Comment:
Revision 40 as of 2012-12-14 15:52:50
Size: 6370
Editor: MartinReuter
Comment:
Deletions are marked like this. Additions are marked like this.
Line 7: Line 7:
Longitudinal data are more complex than cross-sectional data, as repeated measures are correlated within each subject. The strength of this correlation will depend on the time separation between scans. In addition extra care must be taken when the data exhibit significant between-subject variation in number of time points and between-scan intervals (imperfect timing). A statistical analysis should then consider these data features in order to obtain valid statistical inferences. Longitudinal data are more complex than cross-sectional data, as repeated measures are correlated within each subject. The strength of this correlation will depend on the time separation between scans. In addition, extra care must be taken when the data exhibit significant between-subject variation in number of time points and between-scan intervals (imperfect timing). A statistical analysis should then consider these data features in order to obtain valid statistical inferences.
Line 10: Line 10:
1. Simplified repeated measures ANOVA (ignores correlation and timing of the measurement occasions)
2. Direct analysis of atrophy rates or percent changes (ignores correlation and single time points)
3. Linear mixed effects models <-- recommended, but more complex 
 1. Simplified [[ RepeatedMeasuresAnova | repeated measures ANOVA ]] (ignores correlation and timing of the measurement occasions)
 2. [[ LongitudinalTwoStageModel | Direct analysis of atrophy ]] rates or percent changes (ignores correlation and single time points)
 3. [[ LinearMixedEffectsModels | Linear mixed effects models]] <-- '''recommended''' (but more complex)
Line 19: Line 19:
'''Advantages:'''
 * Included in mri_glmfit.
 * Does not assume any specific trend in the mean response over time and thus can capture complex trajectories.
 * Can make use of different multiple comparisons methods that come with mri_glmfit.

Line 20: Line 26:
 * does NOT consider the correlation of the repeated measures
 * is not a true repeated measure ANOVA.
 * Does NOT consider the correlation among the repeated measures, and thus, there is a significant reduction in statistical power.
 * Does NOT consider the timing of the measurement occasions which may result in a further reduction in power.
 * Can only be applied to balanced data (all subject have their scans acquired at the same set of measurement occasions) with a small number of repeated measures (<=3).
Line 29: Line 36:
To analyze, e.g. anualzied percent change or atropy rates for 2 or more time points, one can run a two stage model. This avoids dealing with the longitudinal correlation. The two stages are:
 1. first, simplify the statistic to a single number for each subject (the difference of two time points, or the slope of the fitting line, or the annualized percent change, etc.)
 2. then analyze the obtained measure across subjects or groups with a standard GLM.
To analyze, e.g. annualized percent change or atrophy rates for 2 or more time points, one can run a two stage model. This avoids dealing with the longitudinal correlation. The two stages are:
 1. First, simplify the statistic to a single number for each subject (the difference of two time points, or the slope of the fitting line, or the annualized percent change, etc...).
 2. Then analyze the obtained summary measure across subjects or groups with a standard GLM.
Line 33: Line 40:
This model is quite simple and can be a good choice if all subjects have the same number of time points. Linear fits into each subject data are often meaningful, as longitudinal change is almost linear within a short time frame of a few years. This model is quite simple and can be an option if all subjects have the same number of time points, approximately equally spaced. Linear fits into each subject data are often meaningful, as longitudinal change can be assumed to be almost linear within a short time frame in several applications.
Line 36: Line 43:
 * modeling the correlation structure of repeated measures can be avoided
 * can deal with differently spaced time points
 * w
orks on ROI stat (e.g. aseg.stats or aparc.stats) and on cortical maps (e.g. thickness)
 * the second stage can be performed with QDEC (simple GUI) or directly with mri_glmfit
 * the second stage analysis can make use of different multiple comparison methods that come with mri_glmfit
 * scripts are available ( long_mris_slopes and long_stats_slopes ), no matlab needed
 * for the simple case of two time points and when looking at simple differences this model simplifies to a paired analysis, but can additionally compute (symmetrized) percent changes
 * includes code for intersecting cortex labels (across time and across subjects) to make sure that all non-cortex measures are excluded
 * Can deal with differently many and differently spaced time points (but does not model the difference in variability).
 * Works on ROI stat (e.g. aseg.stats or aparc.stats) and on cortical maps (e.g. thickness).
 * The second stage can be performed with QDEC (simple GUI) or directly with mri_glmfit.
 * The second stage analysis can make use of different multiple comparisons methods that come with mri_glmfit.
 * Scripts are available ( long_mris_slopes and long_stats_slopes ), no matlab needed.
 * For the simple case of two time points and when looking at simple differences this model simplifies to a paired analysis, but can additionally compute (symmetrized) percent changes.
 * Includes code for intersecting cortex labels (across time and across subjects) to make sure that all non-cortex vertices are excluded.
Line 46: Line 52:
 * does not account for different certainty of within subject slopes depending on the number of time points
 * difficult to model non-linear temporal behaviour
 * difficult to deal with time varying co-variates (slopes would need to be fit into those for each subject to reduce these to a single number)
 * cannot include information from subjects with only a single time point
 * Does NOT model the correlation among the repeated measures, and thus, there is a significant reduction in statistical power.
 * Does NOT
account for different certainty of within subject slopes depending on the number of time points and therefore it has the highest propensity to false positives (type I family wise error in the mass-univariate setting).
 * Difficult to model non-linear temporal behaviour.
 * Difficult to deal with time varying co-variates (slopes would need to be fit into those for each subject to reduce these to a single number).
 * Cannot include information from subjects with only a single time point and thus the results are likely to be biased and have less statistical power.
Line 51: Line 58:
The linear mixed effects model overcomes this limitation and should be used if subjects have differently many time points (or for more complex modeling). The linear mixed effects model overcomes these limitations and should be used if subjects have differently many time points (or for more complex modeling). 
Line 59: Line 66:
A Linear Mixed Effects (LME) model is the most powerful approach A Linear Mixed Effects (LME) model is the most powerful and principled approach. We recommend this approach.
Line 62: Line 69:
 * can deal well with differently many time points
 * even subjects with only a single time point can be included into these models (make sure they also run through the longitudinal stream, available with version FS 5.2, to avoid a bias due to different processing)
 * considers the temporal correlation and works for stats (univariate) or surface analysis (mass-univariate)
 * our mass-univariate method can deal very well with the spacial correlation of measures on the cortex and is very fast by working with spacial regions
 * can be used to model more complex longitudinal behavior (e.g. quadratic, or piecewise linear trajectories) and time-varying covariates
 * Works for both stats (univariate) and surface analysis (mass-univariate).
 * Can handle unequal timing and different number of time points across subjects (missing data).
 * Even subjects with only a single time point can be included into these models (make sure they also run through the longitudinal stream, available with version FS 5.2, to avoid a bias due to different image processing) .
 * Appropriately models the temporal correlation.
 * Can model different variances across measurement occasions.
 * Our mass-univariate method can deal very well with the spatial correlation among measurements on the cortex and is very fast by working with spatial regions in which the correlation structure is relative constant.
 * Can be used to model complex longitudinal behavior (e.g. quadratic, or piecewise linear trajectories) and time-varying covariates.
 * It seems to become consens among statisticians that LME models are the right mechanism to study longitudinal data and they may be requested in journal publications by the reviewers.
Line 69: Line 79:
 * more complicated use (distinguish mixed effects, fixed effects ...)
 * currently our implementation is in Matlab
 * and only offers FDR for multiple comparision correction.
 * More complicated use (e.g. requires distinguishing mixed effects from fixed effects ...).
 * Currently, our implementation is in Matlab only.
 * Currently only offers FDR for multiple comparisons correction.

Longitudinal Statistics

This page describes ways of analyzing longitudinal data after processing it using the longitudinal stream in Freesurfer.

Longitudinal data are more complex than cross-sectional data, as repeated measures are correlated within each subject. The strength of this correlation will depend on the time separation between scans. In addition, extra care must be taken when the data exhibit significant between-subject variation in number of time points and between-scan intervals (imperfect timing). A statistical analysis should then consider these data features in order to obtain valid statistical inferences.

Freesurfer currently comes with (at least) three different frameworks for the analysis of longitudinal data:

  1. Simplified repeated measures ANOVA (ignores correlation and timing of the measurement occasions)

  2. Direct analysis of atrophy rates or percent changes (ignores correlation and single time points)

  3. Linear mixed effects models <-- recommended (but more complex)


Simplified Repeated Measures ANOVA

This method can be used to check for differences between individual time points or compare time point differences across groups. For two time points it simplifies to a PairedAnalysis.

Advantages:

  • Included in mri_glmfit.
  • Does not assume any specific trend in the mean response over time and thus can capture complex trajectories.
  • Can make use of different multiple comparisons methods that come with mri_glmfit.

Disadvantages:

  • Does NOT consider the correlation among the repeated measures, and thus, there is a significant reduction in statistical power.
  • Does NOT consider the timing of the measurement occasions which may result in a further reduction in power.
  • Can only be applied to balanced data (all subject have their scans acquired at the same set of measurement occasions) with a small number of repeated measures (<=3).

For details see: RepeatedMeasuresAnova


Analysis of Rates or Percent Changes

To analyze, e.g. annualized percent change or atrophy rates for 2 or more time points, one can run a two stage model. This avoids dealing with the longitudinal correlation. The two stages are:

  1. First, simplify the statistic to a single number for each subject (the difference of two time points, or the slope of the fitting line, or the annualized percent change, etc...).
  2. Then analyze the obtained summary measure across subjects or groups with a standard GLM.

This model is quite simple and can be an option if all subjects have the same number of time points, approximately equally spaced. Linear fits into each subject data are often meaningful, as longitudinal change can be assumed to be almost linear within a short time frame in several applications.

Advantages:

  • Can deal with differently many and differently spaced time points (but does not model the difference in variability).
  • Works on ROI stat (e.g. aseg.stats or aparc.stats) and on cortical maps (e.g. thickness).
  • The second stage can be performed with QDEC (simple GUI) or directly with mri_glmfit.
  • The second stage analysis can make use of different multiple comparisons methods that come with mri_glmfit.
  • Scripts are available ( long_mris_slopes and long_stats_slopes ), no matlab needed.
  • For the simple case of two time points and when looking at simple differences this model simplifies to a paired analysis, but can additionally compute (symmetrized) percent changes.
  • Includes code for intersecting cortex labels (across time and across subjects) to make sure that all non-cortex vertices are excluded.

Disadvantages:

  • Does NOT model the correlation among the repeated measures, and thus, there is a significant reduction in statistical power.
  • Does NOT account for different certainty of within subject slopes depending on the number of time points and therefore it has the highest propensity to false positives (type I family wise error in the mass-univariate setting).
  • Difficult to model non-linear temporal behaviour.
  • Difficult to deal with time varying co-variates (slopes would need to be fit into those for each subject to reduce these to a single number).
  • Cannot include information from subjects with only a single time point and thus the results are likely to be biased and have less statistical power.

The linear mixed effects model overcomes these limitations and should be used if subjects have differently many time points (or for more complex modeling).

For details see: LongitudinalTwoStageModel


Linear Mixed Effects Model

A Linear Mixed Effects (LME) model is the most powerful and principled approach. We recommend this approach.

Advantages:

  • Works for both stats (univariate) and surface analysis (mass-univariate).
  • Can handle unequal timing and different number of time points across subjects (missing data).
  • Even subjects with only a single time point can be included into these models (make sure they also run through the longitudinal stream, available with version FS 5.2, to avoid a bias due to different image processing) .
  • Appropriately models the temporal correlation.
  • Can model different variances across measurement occasions.
  • Our mass-univariate method can deal very well with the spatial correlation among measurements on the cortex and is very fast by working with spatial regions in which the correlation structure is relative constant.
  • Can be used to model complex longitudinal behavior (e.g. quadratic, or piecewise linear trajectories) and time-varying covariates.
  • It seems to become consens among statisticians that LME models are the right mechanism to study longitudinal data and they may be requested in journal publications by the reviewers.

Disadvantages:

  • More complicated use (e.g. requires distinguishing mixed effects from fixed effects ...).
  • Currently, our implementation is in Matlab only.
  • Currently only offers FDR for multiple comparisons correction.

For details see: LinearMixedEffectsModels


MartinReuter

LongitudinalStatistics (last edited 2018-07-25 12:06:32 by MorganFogarty)