BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
plf515
Lapis Lazuli | Level 10

Hello

 

I have modelled regressions that include various quadratics and intereactions.  I have saved the predicted values so, for each model I have

 

V1    V2    Pred

1        2       5

1.1     1.2    4.30

etc for several hundred lines

 

I'd like a graph that has V1 on the x axis, Pred on the y axis and lines for different quantiles of V2.

 

I know I've done this before.... but I can't remember how.

 

 

TIA

Peter

1 ACCEPTED SOLUTION

Accepted Solutions
Rick_SAS
SAS Super FREQ

If V2 is a class variable, you can use a SERIES statement with GROUP= option:

SERIES x=v1 y=pred / group=v2;

 

However, if V2 is continuous, this won't work so well.  Instead, use the EFFECTPLOT statement to get what you want.  It sounds like you might want to use the SLICEFIT option with the SLICEBY= suboption, as shown in the second example that I linked to. 

 

If your regression procedure does not support the EFFECTPLOT statement directly, you can STORE the  model to an item store and use PROC PLM, which does support the EFFECTPLOT statement.

View solution in original post

1 REPLY 1
Rick_SAS
SAS Super FREQ

If V2 is a class variable, you can use a SERIES statement with GROUP= option:

SERIES x=v1 y=pred / group=v2;

 

However, if V2 is continuous, this won't work so well.  Instead, use the EFFECTPLOT statement to get what you want.  It sounds like you might want to use the SLICEFIT option with the SLICEBY= suboption, as shown in the second example that I linked to. 

 

If your regression procedure does not support the EFFECTPLOT statement directly, you can STORE the  model to an item store and use PROC PLM, which does support the EFFECTPLOT statement.

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
How to Concatenate Values

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.

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
  • 1 reply
  • 867 views
  • 1 like
  • 2 in conversation