2

A Latent growth curve model with a time-invariant covariant can be specified with (at least) two ways, by using the multigroup model approach or the "regression approach".

By regression approach I mean regressing intercept and slope on the time-invarying covariate, and by multigroup model I mean running two models, one multigroup model with no restrictions and one with slopes restricted to equality across the groups and then using model comparison tests to see whether the slopes are different.

I recently learned that the multigroup approach has certain benefits over the regression approach, as the latter assumes that the outcome variable (LGC indicator variable) has similar properties at different levels of the covariate (e.g. homogeneous variances), whereas the multigroup approach does not.

This is very clear to me when it comes to categorical covariates such as gender. We can use a multigroup model with gender as the group variable, or we can check whether men and women have homogeneous variances on the LGC indicator variable at each time point and if they do, we can also use the regression approach.

However, what if we have continuous time-invariant covariate? Can we use the regression approach? If so, should we first check whether the LGC indicator variable has similar variance (and other properties) at different levels of the covariate? If so, which levels should we check and how?

Or, should we divide the continuous covariate into categorical levels and run a multigroup model using those levels as groups? This at least feels incorrect, but I'm not sure.

Sointu
  • 1,846
  • 1
    Similar questions are asked frequently, see for instance https://stats.stackexchange.com/questions/373890/separate-models-vs-flags-in-the-same-model/373909#373909. Not a duplicate ... https://stats.stackexchange.com/questions/68834/what-is-the-benefit-of-breaking-up-a-continuous-predictor-variable. In general it is considered best for reasons of statistical power, to use all the data in one model. If you want some other advice, better to edit your post with more concrete details – kjetil b halvorsen Sep 08 '23 at 18:38

1 Answers1

4

You should most definitely not divide your continuous covariate into categories because that would result in an unnecessary and potentially detrimental loss of information (and statistical power). This would almost certainly be more of a concern than heteroscedasticity across levels of the predictor variable. So I would say yes, it is OK to use the regression approach for a continuous predictor variable (this is standard practice).

  • Thank you, this was my intuition but I got confused when I learned about the multigroup thing! – Sointu Sep 08 '23 at 14:37