BookmarkSubscribeRSS Feed
chavens
Fluorite | Level 6

Hi All,

 

I'm wondering how to create an interaction plot with a multivariable linear regression (using proc glm), but have so far come up empty. This is the code that I am using and I just want to create the interaction plot to be able to more easily interpret the interaction. I know that I could also stratify, but would prefer to visualize it this way first.

 

proc glm data=transpose_reg plots=(diagnostics residuals);
class lone;
by var_name;
model reg_var = lone age gender global lone*global / ss3;
means lone;
run;

 

Thanks,

 

chavens

1 REPLY 1
Rick_SAS
SAS Super FREQ

Use the STORE statement to save the model to an item store. Then use PROC PLM  and the EFFECTPLOT statement to slice and dice and create the interaction plot that you want. For an example, see the article "Use the EFFECTPLOT statement to visualize regression models in SAS."

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
What is ANOVA?

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.

Discussion stats
  • 1 reply
  • 4172 views
  • 0 likes
  • 2 in conversation