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 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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