BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
ChristosK
Quartz | Level 8
proc logistic data=HEERDT.VPICU_label;
 model VP_ICU1_VasoNE_012(ref='0')= Ind_DBP1|Age/ nooddsratio link=glogit;
  store logimodel;
  run; 

proc plm source=logiModel ;
   effectplot contour(x= Ind_DBP1 y=Age plotby=VP_ICU1_VasoNE_012 );
run;

I'm generating the following image, but just want to get a publication quality image for the value of VP_ICU1_VasoNE_012 =2.

Since this is the outcome, I cant find an option using plotby = to just generate this image.

Sounds like a question for Rick:-)

1 ACCEPTED SOLUTION

Accepted Solutions
Rick_SAS
SAS Super FREQ

I can't open the pdf for some reason. However, I think the values in the EFFECTPLOT statement are restricted to the explanatory variables. It sounds like you want to plot the probability for a particular level of a multinomial response variable. If so, use the UNPACK option to put each response level in its own graph.  You might also want to use the ILINK option to get the contours on the probability scale. Here's an example:

 

proc logistic data=sashelp.cars;
  model origin(ref="Asia")= mpg_city|weight / nooddsratio link=glogit;
  store logimodel;
run; 

proc plm source=logiModel ;
   effectplot contour(x=mpg_city y=Weight) / ilink unpack;
run;

 

 

View solution in original post

2 REPLIES 2
Rick_SAS
SAS Super FREQ

I can't open the pdf for some reason. However, I think the values in the EFFECTPLOT statement are restricted to the explanatory variables. It sounds like you want to plot the probability for a particular level of a multinomial response variable. If so, use the UNPACK option to put each response level in its own graph.  You might also want to use the ILINK option to get the contours on the probability scale. Here's an example:

 

proc logistic data=sashelp.cars;
  model origin(ref="Asia")= mpg_city|weight / nooddsratio link=glogit;
  store logimodel;
run; 

proc plm source=logiModel ;
   effectplot contour(x=mpg_city y=Weight) / ilink unpack;
run;

 

 

ChristosK
Quartz | Level 8

Thanks Rick.

Not quite sure I understand what the link function does. I tried it with and without, but the output looked the same.

 

This is the image I came up with:

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 2 replies
  • 1265 views
  • 2 likes
  • 2 in conversation