BookmarkSubscribeRSS Feed
monona
Obsidian | Level 7
proc glm data=work.data_1;
	class z;
	model y=w z;
run;

Capture.PNGCapture.PNG

 

Appreciate if anyone could let me know how to add to the plot horizontal lines correspondent means for y in each group z.

2 REPLIES 2
PeterClemmensen
Tourmaline | Level 20

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.

Ksharp
Super User

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 .

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

How to Concatenate Values

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 473 views
  • 0 likes
  • 3 in conversation