Does anybody know how to remove the output of the stepwise model selection process from the html output?
ods html;
proc reg data=reg_data (where=(family=HR)) plot(only label)=(observedbypredicted) corr;
model salary=grade age education / selection=stepwise slentry=0.15 slstay=0.10; output out=residuals r=Difference p=Predicted;
id name id race2 gender;
run;
quit;
Thank you!
Thank you so much!
Not trying to be snarky or anything, but the best way to remove this is to not do stepwise model selection at all. There are much better methods (LAR or LASSO) that avoid many of the problems associated with stepwise model selection outlined in http://www.nesug.org/proceedings/nesug07/sa/sa07.pdf.
Steve Denham
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.