Good Morning everyone,
I am new to SAS and have a question.
I have a dataset with one independent Group with 5 levels and one dependent variable Pol.
I am conducting a comparison of means using GLM with the following code:
proc glm data=mylib.'Sheet1$'n;
class Group;
model pol = Group;
lsmeans CDKstage / stderr;
The procedure works fine and shows a highly significant difference between the levels of Group p<.001. Now I would like to conduct a follow up analysis to determine which of the levels of group are different from the others. How do I do a post hoc comparison of means in Proc GLM.
Thank you!!