BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
analyst_work
Obsidian | Level 7

Hi,

I am trying to run a glimmix logistic regression model. My dependent variable has 2 levels (yes/no) and I am trying to run the model just with one independent variable (with 2 levels) for now. Once I have run the model, I want to also get the absolute % predicted value, which I am not sure how to do.

 

proc glimmix data = test;

class y ;

model x (event = '1') = y /dist=binary link= logit;

run;

 

Thank you.

1 ACCEPTED SOLUTION

Accepted Solutions
StatDave
SAS Super FREQ

Add an LSMEANS statement with the ILINK option. The predicted probabilities are in the Mean column. Add the CL option if you want confidence limits

lsmeans y / ilink cl;

View solution in original post

1 REPLY 1
StatDave
SAS Super FREQ

Add an LSMEANS statement with the ILINK option. The predicted probabilities are in the Mean column. Add the CL option if you want confidence limits

lsmeans y / ilink cl;

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!

What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 1 reply
  • 364 views
  • 2 likes
  • 2 in conversation