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

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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