BookmarkSubscribeRSS Feed
chowfar
Calcite | Level 5

Hi, I want to know how can I get a contour plot of quadratic regression model in SAS 9.4. The proc glm does not give the contour plot automatically. Please help.

6 REPLIES 6
PGStats
Opal | Level 21

If you don't have any CLASS effect in your model, you could possibly get contour plots with proc RSREG.

PG
chowfar
Calcite | Level 5

Thanks for the reply. Can you please give an example? I mean sample SAS code with proc rsreg

PGStats
Opal | Level 21

Example 85.1, in my version of the documentation, produces a contour plot.

PG
chowfar
Calcite | Level 5

How can I get  three-dimensional surface plots of quadratic regression model in SAS?

 

model yield = t pr t2 pr2 tp;

where t= temperature ( values scaled to -1,0 and 1)

pr= pressure  ( values scaled to -1,0 and 1)

t2= t*t

pr2=pr*pr

tp=t*pr;

 

 

gergely_batho
SAS Employee
You can save predictions of the model, then use proc g3d (and proc g3grid if needed).
Rick_SAS
SAS Super FREQ

As PGStats said, look at the doc for PROC RSREG. The Getting Started example looks similar to what you need.

This (untested) code might point you in the right direction:

 

proc rsreg data=Have plots(unpack)=surface(3d);

model yield = temperature pressure;

run;

 

Notice that the procedure automatically fits a quadratic model, so you do not need to specify the quadratic terms for temperature^2, pressure^2 or temperature*pressure.

 

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 6 replies
  • 2086 views
  • 3 likes
  • 4 in conversation