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