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
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.
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;
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.