A00-240 · Question #20
The selection criterion used in the forward selection method in the REG procedure is:
The correct answer is B. SLE. B is correct because the forward selection method in SAS's PROC REG adds variables to the model one at a time, and a variable is included only if its p-value falls at or below the SLE (Significance Level to Enter) threshold. SLE is the gatekeeper for entry - it directly controls
Question
Options
- AAdjusted R-Square
- BSLE
- CMallows' Cp
- DAIC
How the community answered
(24 responses)- A4% (1)
- B88% (21)
- D8% (2)
Explanation
B is correct because the forward selection method in SAS's PROC REG adds variables to the model one at a time, and a variable is included only if its p-value falls at or below the SLE (Significance Level to Enter) threshold. SLE is the gatekeeper for entry - it directly controls which variables pass the F-test to join the model.
Why the distractors are wrong:
- A (Adjusted R²) is a fit metric available in PROC REG's model selection options (via
ADJRSQ), but it's not the entry criterion governing forward selection's step-by-step variable admission. - C (Mallows' Cp) is another selection criterion available in PROC REG (via
CPselection method), used to balance fit and complexity, but it drives a different selection method, not forward selection. - D (AIC) is used as a selection criterion in procedures like PROC GLMSELECT, not in PROC REG's forward selection.
Memory tip: Pair the direction with the action - Forward = Enter = SLE. Its counterpart is backward elimination, which uses SLS (Significance Level to Stay). If you're going in, you need a level to enter; if you're staying, you need a level to stay.
Topics
Community Discussion
No community discussion yet for this question.