Mixed effect model and baseline dependent variable as covariate
I would like to determine which predictors are associated with the rate of change in a continuous dependent variable repeatedly/longitudinally measured over time in each patient. The analysis will use a mixed effect model. The model will therefore include an interaction term between the predictor and time (c.time in STATA) and the coefficient for the interaction term will give what is essentially a difference in slopes. So, if the predictor is gender, and males (coded 0) have a c.time coefficient of 1.5 (slope) then the interaction term could give a coefficient of say 0.5 and tell you that females (coded 1) have a slope of 2.0.
This will be tough since I have many variables which will involve many interaction terms (one for each variable) and the interpretation may get complicated. I recently came across an article that states the following where FEV1 (lung function) is the outcome that is being repeatedly measured and mixed effect model is also used:
" All models include baseline lung function as a covariate; therefore, the regression coefficients express the influence of predictor variables upon the annual rate of decline of lung function. " (PMC2078677)
However, is this correct? I tried this with sample data to see if the answers match and they do not. I am not sure if I am doing it right.
I did the following in STATA:
1) xtmixed y gender##c.time || id:, var
and compared this to
2) xtmixed y gender time baseline_y || id:, var
I guess I was expecting the gender coefficient from 2) to match the gender##c.time coefficient from 1) which seems very silly now.
My only other option would be to group individual slopes of the dependent variable into high and low slope patients to use in a logistic regression model which doesn't adjust for covariance. I am wondering what you all think of this as well.