Hi,
I am using the following code:
PROC LOGISTIC DATA=A.DATA_VARCLUS_CORR DESCENDING;
MODEL TARGET=&VARLIST2
/SELECTION=STEPWISE SLS=0.01 SLE=0.01;
RUN;
As a result of the code above, I get an output that includes, among other things, the following:
Analysis of MaximumLikelihood Estimates
Standard Wald
Parameter DF Estimate Error Chi-Square Pr > ChiSq
This output is outputted into a window. I would like to have the output into a separate file, in particular fields that I havehighlighted in red.
I tried to use OUTMODEL= option, but that doesnt seem to output what I need.
Thanks for your help.
Add the statement:
ods output ParameterEstimates=myParameterEstimates;
after your model statement. Run the procedure and look into the myParameterEstimates dataset.
PG
Add the statement:
ods output ParameterEstimates=myParameterEstimates;
after your model statement. Run the procedure and look into the myParameterEstimates dataset.
PG
Thanks PG for your response.
in the ParameterEstimates statment, my variable names are being truncated, is it possible to set the variable field length to $32, and select based on ProbChiSq = <.0001 ?
Try the namelen= options in proc logistic statement.
ie proc logistic data=have namelen=32
You may also add:
ods output ParameterEstimates=myParameterEstimates(where=(ProbChiSq<0.0001));
if you wish to keep only those cases.
PG
Perfect, thank you both.
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.