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.

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 2986 views
  • 2 likes
  • 3 in conversation