I perform Forward selection and specify AIC, but there is no any AIC value in the output. What goes wrong in my codes?
PROC REG DATA=ca_2 ;
MODEL y=x1 x2 / SELECTION= FORWARD AIC ;
RUN;
Your code is fine, RTM:
AIC
outputs Akaike’s information criterion for each model selected (Akaike 1969; Judge et al. 1980) to the OUTEST= data set. If SELECTION=ADJRSQ, SELECTION=RSQUARE, or SELECTION=CP is specified, then the AIC statistic is also added to the SubsetSelSummary table.
proc reg data=sashelp.class outest=want;
model weight = height age/selection=forward aic;
run;
proc print data=want;
run;
Your code is fine, RTM:
AIC
outputs Akaike’s information criterion for each model selected (Akaike 1969; Judge et al. 1980) to the OUTEST= data set. If SELECTION=ADJRSQ, SELECTION=RSQUARE, or SELECTION=CP is specified, then the AIC statistic is also added to the SubsetSelSummary table.
proc reg data=sashelp.class outest=want;
model weight = height age/selection=forward aic;
run;
proc print data=want;
run;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and save with the early bird rate—just $795!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.