I am analyzing an RCT where four sites were randomly assigned to four condition (one site per condition) with four timepoints (baseline, 6 month, 12 month, and 18 month). I am working on specifying my MLM using xtmixed and am a little torn about the best way to handle the treatment condition. It is clustered, but only 1 site per condition.
I am including all covariates that predict baseline differences between the four groups as fixed effects. The question is do I include treatment condition as a fixed effects only? Do I include it as a random effect as well? Or use the cluster option? See below for the various options I am considering.
Option 1 (group as fixed effect only)
xtmixed dv i.group time covariate1 covariate2 covariate3 covariate4 covariate5 covariate6 || Subject:, var reml
Option 2 (group as level 2 random effect, along with Subject)
xtmixed dv i.group time covariate1 covariate2 covariate3 covariate4 covariate5 covariate6 || Subject: group,
Option 3 (group as a random effect on it's own level)
xtmixed dv i.group time covariate1 covariate2 covariate3 covariate4 covariate5 covariate6 || group: || Subject: ,
Option 4 (use cluster command - this option yields estimates most dramatically different from the others)
xtmixed dv i.group time covariate1 covariate2 covariate3 covariate4 covariate5 covariate6 || group: || Subject: , vce(cluster group)
Any advice would be greatly appreciated.
I am including all covariates that predict baseline differences between the four groups as fixed effects. The question is do I include treatment condition as a fixed effects only? Do I include it as a random effect as well? Or use the cluster option? See below for the various options I am considering.
Option 1 (group as fixed effect only)
xtmixed dv i.group time covariate1 covariate2 covariate3 covariate4 covariate5 covariate6 || Subject:, var reml
Option 2 (group as level 2 random effect, along with Subject)
xtmixed dv i.group time covariate1 covariate2 covariate3 covariate4 covariate5 covariate6 || Subject: group,
Option 3 (group as a random effect on it's own level)
xtmixed dv i.group time covariate1 covariate2 covariate3 covariate4 covariate5 covariate6 || group: || Subject: ,
Option 4 (use cluster command - this option yields estimates most dramatically different from the others)
xtmixed dv i.group time covariate1 covariate2 covariate3 covariate4 covariate5 covariate6 || group: || Subject: , vce(cluster group)
Any advice would be greatly appreciated.
Comment