I am learning to proc mixed. So my following question is hypothetical and any help is appreciated: Supposed that I am comparing three age different un-equal groups of runners who ran with different shoe types and would like to see if they are significantly different in terms of their speed. Then, my data can have the following variables: subj_id, group name, shoe type, speed of running. proc mixed data=temp; class subj_id group_name shoe_type; model speed_of_running= group_name shoe_type group_name*shoe_type; random subj_id; run; I have the following questions: Is my syntax above correct for this application? Do I need to randomize subj_id? Can I alter proc mixed so that I can see if each group is also different? For instance, if I have three groups of A, B, and C, can I make changes to see if A and B are different, B and C are different, A and C are different. Can I alter proc mixed to see which group ran faster on average? Thanks
... View more