Dear all,
this is my first post on this forum.
briefly: in a longitudinal within-subject clinical trial, I have some baseline variables (factors of a depression rating scale), and I would like to explore how they affect the decrease in my response variable (the total score of the same rating scale), in order to assess the best "clinical profile" predicting the response to such treatment.
my syntax:
reshape long yvar , i(id) j(time)
xtset id time
xtmixed yvar x1 x2 x3 x4 x5 x6 || id:, mle vce(robust)
my doubt is: should I look for interaction with time? I have tried something like
xtmixed yvar c.time##c.x1 || id:
but I would not know how to adjust each xvar for the others.
thanks in advance
this is my first post on this forum.
briefly: in a longitudinal within-subject clinical trial, I have some baseline variables (factors of a depression rating scale), and I would like to explore how they affect the decrease in my response variable (the total score of the same rating scale), in order to assess the best "clinical profile" predicting the response to such treatment.
my syntax:
reshape long yvar , i(id) j(time)
xtset id time
xtmixed yvar x1 x2 x3 x4 x5 x6 || id:, mle vce(robust)
my doubt is: should I look for interaction with time? I have tried something like
xtmixed yvar c.time##c.x1 || id:
but I would not know how to adjust each xvar for the others.
thanks in advance
Comment