BookmarkSubscribeRSS Feed
hansmuller
Fluorite | Level 6

I want to obtain the predition interval of the predictive value for an individual case from the logistic regression model. In Proc Logistic, is the confidence limit obtained from output statement the confidence interval for the mean preditive value or the prediction interval for an individual case? If it is not the prediction interval how can I obtain it? It does not have both options that we can choose like Proc Reg.

 

Thank you.

hm

4 REPLIES 4
Reeza
Super User

It's the confidence interval for a specific case/value. 

 

You can get the standard errors and probably need to calculate the prediction interval on your own unfortunately. 

hansmuller
Fluorite | Level 6
Thank you!
Ksharp
Super User
Check SCORE statement 's CLM option.


proc logistic data=sashelp.class;
model sex=age weight height;
score data=sashelp.class out=want clm fitstat;
run;
proc print;run;


hansmuller
Fluorite | Level 6
Thank you. SCORE provides the posterior probabilities and confidence intervals which shall work for my objective.

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!

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
  • 4 replies
  • 3070 views
  • 2 likes
  • 3 in conversation