Hi All,
I am trying to see the effect of trt on calorie intake.
I have 2 trts -1 trt and 1 control
Communities -a and b
Timepoints -1, 2, 3
My model is calorie intake=mu+trt+community+timepoint+interaction+error
The output I get is
Trt 1 246 3.42 0.0658
Eth 1 246 2.37 0.1252
Stage 2 246 2.04 0.1327
Trt*Stage 2 246 3.36 0.0363
It doesnt give me output as stage 1, 2, 3 or community a, b or which treatment it is?
I want to see at each level. Someone please help me with the coding. Am I missing some statement here?
proc mixed data=file1;
class id trt community stage;
model calories= trt community stage stage*trt/outp=delcal;
repeated / type=un subject=id(trt) sscp rcorr;
run;
I have been struggling with this for more than a week now. If anyone out there has any feedback, that will be greatly appreciated.
Thanks
I am trying to see the effect of trt on calorie intake.
I have 2 trts -1 trt and 1 control
Communities -a and b
Timepoints -1, 2, 3
My model is calorie intake=mu+trt+community+timepoint+interaction+error
The output I get is
Trt 1 246 3.42 0.0658
Eth 1 246 2.37 0.1252
Stage 2 246 2.04 0.1327
Trt*Stage 2 246 3.36 0.0363
It doesnt give me output as stage 1, 2, 3 or community a, b or which treatment it is?
I want to see at each level. Someone please help me with the coding. Am I missing some statement here?
proc mixed data=file1;
class id trt community stage;
model calories= trt community stage stage*trt/outp=delcal;
repeated / type=un subject=id(trt) sscp rcorr;
run;
I have been struggling with this for more than a week now. If anyone out there has any feedback, that will be greatly appreciated.
Thanks