Hello Everyone,
I am hoping for some guidance on whether it's ok to include the baseline (i.e., "initial") outcome value of the outcome as a covariate of the linear and quadratic growth terms in a mixed-effects model. The outcome here is BMI measured at 6 time points (T1-T6), although time is a continuous variable that can be different for different people. We think BMI will undergo quadratic growth, and we are primarily interested in whether the growth was different between intervention and control. However, in secondary moderator analyses we want to see if the linear and/or quadratic growth rates were different depending on initial BMI at baseline (e.g., participants with higher initial BMI may have a smaller acceleration and/or linear growth while those with lower initial BMI have have larger acceleration and/or linear growth). We also think that the linear and/or quadratic intervention effects could be different depending on initial BMI.
Does anyone know if adding baseline BMI as covariate for the linear and quadratic growth terms is acceptable? Is it a problem that this "moderator" is actually the outcome at T1? If it's a problem, what are some possible ways to handle this? Any references supporting or refuting this approach would be highly appreciated!
See below for more context, and how I'm considering implementing this in Stata (feedback welcome here too!):
Below is the original model (without baseline BMI as a covariate). Note, the original model allows boys and girls to have different initial BMI (but not different growth curves), and it also allows for people at different ages at baseline to have different growth curves (e.g., someone who was 3 at baseline is expected to be at a different part of the growth curve than someone who was 6 at baseline).
Below is how we think the model with baseline BMI included might look (with 4 additional terms: 2 for linear and 2 quadratic). I do not include the baseline BMI as a covariate for the intercept, because they are essentially synonymous.
Thank you very much!
I am hoping for some guidance on whether it's ok to include the baseline (i.e., "initial") outcome value of the outcome as a covariate of the linear and quadratic growth terms in a mixed-effects model. The outcome here is BMI measured at 6 time points (T1-T6), although time is a continuous variable that can be different for different people. We think BMI will undergo quadratic growth, and we are primarily interested in whether the growth was different between intervention and control. However, in secondary moderator analyses we want to see if the linear and/or quadratic growth rates were different depending on initial BMI at baseline (e.g., participants with higher initial BMI may have a smaller acceleration and/or linear growth while those with lower initial BMI have have larger acceleration and/or linear growth). We also think that the linear and/or quadratic intervention effects could be different depending on initial BMI.
Does anyone know if adding baseline BMI as covariate for the linear and quadratic growth terms is acceptable? Is it a problem that this "moderator" is actually the outcome at T1? If it's a problem, what are some possible ways to handle this? Any references supporting or refuting this approach would be highly appreciated!
See below for more context, and how I'm considering implementing this in Stata (feedback welcome here too!):
Below is the original model (without baseline BMI as a covariate). Note, the original model allows boys and girls to have different initial BMI (but not different growth curves), and it also allows for people at different ages at baseline to have different growth curves (e.g., someone who was 3 at baseline is expected to be at a different part of the growth curve than someone who was 6 at baseline).
Code:
xtmixed bmi /// i.cfemale i.trt c.agemoscen /// c.time i.trt#c.time c.agemoscen#c.time /// c.time2 i.trt#c.time2 c.agemoscen#c.time2 /// || indexchildid: c.time c.time2, cov(un) mle
Below is how we think the model with baseline BMI included might look (with 4 additional terms: 2 for linear and 2 quadratic). I do not include the baseline BMI as a covariate for the intercept, because they are essentially synonymous.
Code:
xtmixed bmi /// i.cfemale i.trt c.agemoscen /// c.time i.trt#c.time c.agemoscen#c.time c.basebmi#c.time i.trt#c.basebmi#c.time /// c.time2 i.trt#c.time2 c.agemoscen#c.time2 c.basebmi#c.time2 i.trt#c.basebmi#c.time2 /// || indexchildid: c.time c.time2, cov(un) mle
Comment