如题
等级资料重复测量数据 我用genmod 语句,程序如下
proc genmod ;
class no group stage;
model qg=group stage group*stage/d=mult type3;
repeated subject=no/within=stage type=indep;
run;
 全模型做出来 group(2个水平)、stage(4个时间点)、及group*stage均有统计学意义
接下来我想看看组内各个时间点的比较 和同一时间点两组的比较 ,应该用contrast 但是不知道怎么写?