The REG Procedure

Criteria Used in Model-Selection Methods

When many significance tests are performed, each at a level of, for example, 5%, the overall probability of rejecting at least one true null hypothesis is much larger than 5%. If you want to guard against including any variables that do not contribute to the predictive power of the model in the population, you should specify a very small SLE= significance level for the FORWARD and STEPWISE methods and a very small SLS= significance level for the BACKWARD and STEPWISE methods.

In most applications, many of the variables considered have some predictive power, however small. If you want to choose the model that provides the best prediction computed using the sample estimates, you need only to guard against estimating more parameters than can be reliably estimated with the given sample size, so you should use a moderate significance level, perhaps in the range of 10% to 25%.

In addition to R square, the upper C Subscript p statistic is displayed for each model generated in the model-selection methods. The upper C Subscript p statistic is proposed by Mallows (1973) as a criterion for selecting a model. It is a measure of total squared error defined as

upper C Subscript p Baseline equals StartFraction SSE Subscript p Baseline Over s squared EndFraction minus left-parenthesis upper N minus 2 p right-parenthesis

where s squared is the MSE for the full model, and SSE Subscript p is the sum-of-squares error for a model with p parameters including the intercept, if any. If upper C Subscript p is plotted against p, Mallows recommends the model where upper C Subscript p first approaches p. When the right model is chosen, the parameter estimates are unbiased, and this is reflected in upper C Subscript p near p. For further discussion, see Daniel and Wood (1980).

The adjusted R square statistic is an alternative to R square that is adjusted for the number of parameters in the model. The adjusted R square statistic is calculated as

ADJRSQ equals 1 minus StartFraction left-parenthesis n minus i right-parenthesis left-parenthesis 1 minus upper R squared right-parenthesis Over n minus p EndFraction

where n is the number of observations used in fitting the model, and i is an indicator variable that is 1 if the model includes an intercept, and 0 otherwise.

Last updated: December 09, 2022