I'm confused about interpreting the "Solution for fixed effects" and "Type 3 Tests of Fixed Effects." I have searched through lots of SAS papers but still feel confused.
The F-test shows that the interaction term is significant, which means age has a significant effect on score changes. However, I would like to report the coefficients with confidence intervals, so I may need the results from the t-test. However, for each of the interaction terms in the test, they are not significant. How could I explain this?
Here is my code and output. Any help is appreciated
PROC MIXED DATA = test METHOD = REML COVTEST ;
CLASS id age_less55 time_dichotomous(ref="0-6") ;
MODEL Score = time_dichotomous age_less55 time_dichotomous*age_less55/ SOLUTION;
RANDOM INTERCEPT / SUBJECT = id;
repeated time_dichotomous / type=ar(1) sub=id;
store out=MixedModel;
RUN;
proc plm restore=MixedModel;
effectplot interaction (x=time_dichotomous sliceby=age_less55) / clm connect;
run;
The F-test for an interaction and the t-test for different parts of the interaction do NOT test the same thing. They do not have to agree.
The F-test for an interaction tests to see if the different levels of the interaction are different from one another. The t-tests tests to see if the coefficient for a specific level of an interaction is different than zero.
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.
Find more tutorials on the SAS Users YouTube channel.