I want to do a sequestial (not stepwise) regression using SAS EG and control the order in which the IV's are entred into the regression.
Geoff
I'm not sure whether I understand you correctly, but to fit a sequential model you can use PROC REG and specify the SEQB option on the MODEL statement to produce the sequence of parameter estimates as each variable is entered into thte model. The variable order is determined by the order in which the variables are listed on the MODEL statement. For example, look at the SeqParmEst table in the output for the following example:
proc reg data=sashelp.class plots=none;
model weight = height age / ss1 seqb;
run;
The SeqParmEst table follows. The last row is the final parameter estimates that are listed in the ParameterEstimates table.:
| Sequential Parameter Estimates | ||
|---|---|---|
| Intercept | Height | Age |
| 100.026316 | 0 | 0 |
| -143.026918 | 3.899030 | 0 |
| -141.223763 | 3.597027 | 1.278393 |
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 lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.