Hi All,
I'm trying to produce the following settings of reg plot on University Edition:
proc reg data=hw3c;
model oxygen=age runtime runpulse maxpulse / r;
plot r.*(age runtime runpulse maxpulse);
plot r.*p.;
plot npp.*r.;
plot cookd.*obs.;
run;I know I can run the following code on UE to have all graphs, but the graphs do not have regression equation on top.
proc reg data=hw3c plots= (all);
model oxygen=age runtime runpulse maxpulse / r;
run;
Any help will be appreciated !
Plot statements are no longer supported in PROC REG, in SAS UE or any similar SAS/STAT (14.3) version.
PROC SGPLOT can be used to create graphs, but it’s definitely a bit of work.
@lydiawawa wrote:
Hi All,
I'm trying to produce the following settings of reg plot on University Edition:
proc reg data=hw3c; model oxygen=age runtime runpulse maxpulse / r; plot r.*(age runtime runpulse maxpulse); plot r.*p.; plot npp.*r.; plot cookd.*obs.; run;I know I can run the following code on UE to have all graphs, but the graphs do not have regression equation on top.
proc reg data=hw3c plots= (all); model oxygen=age runtime runpulse maxpulse / r; run;
Any help will be appreciated !
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 save with the early bird rate—just $795!
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.