BookmarkSubscribeRSS Feed
deleted_user
Not applicable
Hi All,

I ran a regression analysis that produced four different equations. I would like to produce one graphic using predicted values from the four equations.

Any help or advice is appreciated.
2 REPLIES 2
deleted_user
Not applicable
You didn't say what PROC you are using. Assuming REG, the following code illustrates one approach (example with just two models but easily expanded) without any graph customizations:

proc reg data=test;
one: model y = x;
output out=pdata1 predicted=p1;
two: model y = x xsq;
output out=pdata2 predicted=p2;
run;
quit;

data plot;
merge pdata1 pdata2;
run;

proc gplot data=plot;
plot (p1 p2)*x/ overlay;
run;
quit;
deleted_user
Not applicable
Hi KMG,
Thanks for your answer. I appreciate it.
As I said, I got four equations (by M ) from the four different methods and I would like to plot the predicted values from all the four equations in one graph, join them and show the trends. With your proposal SAS disabled the By statement.
Fernando.

proc reg outest=est1 outsscp=sscp1 data=WDDGS.fractionsWDDGS24;
by M;
eq1: model Y=PS;
eq2: model Y=PS PSSQ / r cli clm;
plot predicted.*pssq;
plot Y*PSsq='a' predicted.*pssq='p' u95.*pssq='u' l95.*pssq='1' / overlay;
run;
quit;

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 3204 views
  • 0 likes
  • 1 in conversation