Dear statalist,
I am working on a mixed linear model with a continuous dependent variable (d100, 0-100) representing a clinical score measured repeatedly on 230 patients, at different intervals (ie. panel data is unbalanced). I am primarily interested in the change in d100 over time according to a categorical variable (cod, 1-3) that I expect to have a major effect, and have fit the following model:
This gives the following output:

I wanted to go further and establish whether the baseline d100 value at day 0 affects the subsequent slope of decline over days. My issue is that when I include an interaction term for this, the change is much greater than I would have expected - the effect of cod on days is no longer significant, which is a great surprise and to me suggests that when baseline is controlled for, there is no effect of cod on the slope of decline in d100 over days.

Am I misinterpreting or mis-specifying this model, or are my findings accurate?
I am working on a mixed linear model with a continuous dependent variable (d100, 0-100) representing a clinical score measured repeatedly on 230 patients, at different intervals (ie. panel data is unbalanced). I am primarily interested in the change in d100 over time according to a categorical variable (cod, 1-3) that I expect to have a major effect, and have fit the following model:
Code:
mixed d100 c.days##i.cod if dcode==1 & baseline>0 & cod!=0 || ID:days, covariance(unstructured) residuals(independent) stddeviations
I wanted to go further and establish whether the baseline d100 value at day 0 affects the subsequent slope of decline over days. My issue is that when I include an interaction term for this, the change is much greater than I would have expected - the effect of cod on days is no longer significant, which is a great surprise and to me suggests that when baseline is controlled for, there is no effect of cod on the slope of decline in d100 over days.
Code:
mixed d100 days i.cod##c.days##c.baseline if dcode==1 & baseline>0 & cod!=0 || ID:days, covariance(unstructured) residuals(independent) stddeviations
Am I misinterpreting or mis-specifying this model, or are my findings accurate?
Comment