Hello FreeSurfer experts,
I am currently working through the linear mixed effects pipeline to assess longitudinal cortical thickness changes in non-contact/contact athletes and have some questions. My design matrix is as follows:
X = [ones(size(M,1), 1), M(:,1), M(:,2), M(:,3), M(:,1).*M(:,3), M(:,4), M(:,1).*M(:,4), M(:,5), M(:,6), M(:,7), M(:,8), M(:,9)];
M(:,1) = group
M(:,2) = scan time from baseline
M(:,3) = age
With the rest of the columns in X being other covariates from M or *time interaction, and the random intercept term being the only random effect.
- I’m using the spatiotemporal approach, but would vertex-wise yield more powerful results? I know that a previous thread had a similar question, but I am wondering if one would be more
favourable for looking at regional CT changes.
- As well, the two groups have different distributions in timepoints and size. The contact athlete group is about double the size (42 vs 21) and has significantly more athletes with
multi-year participation (2- or 3-years), whereas the non-contact athlete group is almost entirely single-year participation (one set of pre- and post-season scans). Is this something that the LME can inherently account for?
- My main goal is to test if there is a significant difference in the slopes of the two groups (using lme_mass_F). I currently have this setup for my contrast matrix: CM.C = [0 1 zeros(1,10)].
Since I only have two groups, is it logical to use a single row? Additionally, I am a bit unsure of how to assign beta weights.
- After running the F-test, I am correcting the multiple comparisons using FDR2. Are there any other corrections/tests I should utilize before plotting data in tksurfer?
Thank you in advance,
Daniel