proc glm data=work.data_1;
class z;
model y=w z;
run;
Appreciate if anyone could let me know how to add to the plot horizontal lines correspondent means for y in each group z.
I don't think such a facility is available in GLM. I think you have to pre calculate the mean values for each group and use the REFLINE Statement in PROC SGPLOT.
Save it as a dataset by :
ods output ANCOVAPlot=want;
proc glm data=sashelp.class;
class sex;
model weight =sex height;
quit;
and plot refline via PROC SGPLOT .
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.