BookmarkSubscribeRSS Feed
boban
Calcite | Level 5

Hi,

I am trying to graph the probabilities of an event happening in proc GLIMMIX. Does anyone know if the GLIMMIX procedure generates this type of graph?

Basically, I want to plot an S curve, as one does in logistic regressions.

Regards,

B

 

2 REPLIES 2
Rick_SAS
SAS Super FREQ

I don't think GLIMMIX generates a FitPlot directly, but you can use the OUTPUT stmt to  create an output data set that has the predicted values, then use PROC SGPLOT to create the graph.  The trick is that you need to specify what sort of predicted values you want from  (BLUP or NOBLUP) and (ILINK or NOILINK). See the GLIMMIX doc for what these terms.

 

Here is code for an "S-like curve" that you can study and modify:

 

proc glimmix data=sashelp.cars(where=(origin^='Europe'));
model Origin = mpg_city / dist=binary;
output out=modelout pred(noblup ilink)=prob 
                    lcl(noblup ilink)=lcl 
                    ucl(noblup ilink)=ucl;
run;

proc sort data=modelout;
by mpg_city;
run;

proc sgplot data=modelout;
band x=mpg_city lower=lcl upper=ucl;
series x=mpg_city y=prob;
yaxis min=0 max=1;
refline 0 1 / axis=y;
run;
boban
Calcite | Level 5

Thank you for the answer, very much appreciated!

 

I will try that.

 

Regards,

B

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

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
  • 1839 views
  • 0 likes
  • 2 in conversation