I have a data set with 4 groups, 5 subjects per group, at 4 timepoints (1, 2, 3, 4 hours post treatment). I am using proc mixed with the following model: proc mixed data=Result method=reml; class subject treatment time; model result = treatment time treatment*time; <repeated or random> lsmeans treatment / adjust=dunnett; run; quit; I am wondering if there are any advantages to using a repeated or random statement? Additionally, I have seen people use the same data set and include interactions for the random statement. Is it appropriate if I were to include the following in my random statement?: random subject subject*treatment subject*time
... View more