The REGSELECT Procedure

Getting Started: REGSELECT Procedure

The following example is closely modeled on the example in the section "Getting Started: GLMSELECT Procedure" in the SAS/STAT User's Guide.

The Sashelp.Baseball data set contains salary and performance information for Major League Baseball players who played at least one game in both the 1986 and 1987 seasons, excluding pitchers. The salaries (Sports Illustrated, April 20, 1987) are from the 1987 season, and the performance measures are from 1986 (Collier Books, The 1987 Baseball Encyclopedia Update). The following step displays (in Figure 19.1) the variables in the data set:

proc contents varnum data=sashelp.baseball;
   ods select position;
run;

Figure 19.1: Sashelp.Baseball Data Set

The CONTENTS Procedure

Variables in Creation Order
#VariableTypeLenLabel
1NameChar18Player's Name
2TeamChar14Team at the End of 1986
3nAtBatNum8Times at Bat in 1986
4nHitsNum8Hits in 1986
5nHomeNum8Home Runs in 1986
6nRunsNum8Runs in 1986
7nRBINum8RBIs in 1986
8nBBNum8Walks in 1986
9YrMajorNum8Years in the Major Leagues
10CrAtBatNum8Career Times at Bat
11CrHitsNum8Career Hits
12CrHomeNum8Career Home Runs
13CrRunsNum8Career Runs
14CrRbiNum8Career RBIs
15CrBBNum8Career Walks
16LeagueChar8League at the End of 1986
17DivisionChar8Division at the End of 1986
18PositionChar8Position(s) in 1986
19nOutsNum8Put Outs in 1986
20nAsstsNum8Assists in 1986
21nErrorNum8Errors in 1986
22SalaryNum81987 Salary in $ Thousands
23DivChar16League and Division
24logSalaryNum8Log Salary


Suppose you want to investigate whether you can model the players’ salaries from the 1987 season based on performance measures for the previous season. The aim is to obtain a parsimonious model that does not overfit these particular data, making the model useful for prediction. This example shows how you can use PROC REGSELECT as a starting point for such an analysis. Because the variation of salaries is much greater for the higher salaries, it is appropriate to apply a log transformation to the salaries before you do the model selection.

Note: Input data must be in a CAS table that is accessible in your CAS session. You must refer to this table by using a two-level name. The first level must be a CAS engine libref, and the second level must be the table name. For more information, see the sections Using CAS Sessions and CAS Engine Librefs and Loading a SAS Data Set onto a CAS Server in Chapter 3: Shared Concepts.

You can load the Sashelp.Baseball data set into your CAS session by using your CAS engine libref with the following DATA step:

data mycas.baseball;
   set sashelp.baseball;
run;

These statements assume that your CAS engine libref is named Mycas, as in the section Using CAS Sessions and CAS Engine Librefs, but you can substitute any appropriately defined CAS engine libref.

The following statements select a model by using the default settings for stepwise selection. ODS Graphics must be enabled before you can request plots. For more information about ODS Graphics, see the section ODS Graphics.

ods graphics on;

proc regselect data=mycas.baseball;
  class league division;
  model logSalary = nAtBat nHits nHome nRuns nRBI nBB
                    yrMajor crAtBat crHits crHome crRuns crRbi
                    crBB league division nOuts nAssts nError;
  selection method=stepwise plots=all;
run;

The output and graphics from this analysis are presented in Figure 19.2 through Figure 19.6.

Figure 19.2: Selection Information, Number of Observations, Class Level Information, and Dimensions

The REGSELECT Procedure

Selection Information
Selection MethodStepwise
Select CriterionSBC
Stop CriterionSBC
Effect Hierarchy EnforcedNone
Stop Horizon3

Number of Observations Read322
Number of Observations Used263

Class Level Information
ClassLevelsValues
League2American National
Division2East West

Dimensions
Number of Effects19
Number of Parameters21


The "Selection Information" table provides details about the method and criteria used to perform the model selection. The requested selection method is a variant of the traditional stepwise selection in which the decisions about what effects to add or drop at any step and when to terminate the selection are both based on the Schwarz Bayesian information criterion (SBC). The effect in the current model whose removal yields the maximal decrease in the SBC value is dropped, provided that this lowers the SBC value. When no further decrease in the SBC value can be obtained by dropping an effect in the model, the effect whose addition to the model yields the lowest SBC value is added and the whole process is repeated. The method terminates when dropping or adding any effect increases the SBC value.

Figure 19.2 displays the "Number of Observations," "Class Level Information," and "Dimensions" tables. The "Number of Observations" table shows that of the 322 observations in the input data, only 263 observations are used in the analysis because there are observations that contain incomplete data. The "Class Level Information" table lists the levels of the classification variables division and league. When you specify effects that contain classification variables, the number of parameters is usually larger than the number of effects. The "Dimensions" table shows the number of effects and the number of parameters that are considered.

The "Stepwise Selection Summary" table in Figure 19.3 shows the effect that was added or dropped at each step of the selection process together with fit statistics for the model at each step. In this case, both selection and stopping are based on the SBC.

Figure 19.3: Selection Summary Table

The REGSELECT Procedure
 
Selection Details

Selection Summary
StepEffect
Entered
Effect
Removed
Number
Effects In
SBC
0Intercept 1-57.2041
1CrRuns 2-194.3166
2nHits 3-252.5794
3YrMajor 4-262.7322
4 CrRuns3-262.8353
5nBB 4-269.7804*
* Optimal Value Of Criterion


Figure 19.4 displays the "Stop Reason," "Selection Reason," and "Selected Effects" tables. Note that these tables are displayed without any titles. The "Stop Reason" table indicates that selection stopped because adding or removing any effect would worsen the SBC value that is used as the selection criterion. In this case, because no CHOOSE= criterion is specified in the SELECTION statement, the final model is the selected model; this is indicated in the "Selection Reason" table. The "Selected Effects" table lists the effects in the selected model.

Figure 19.4: Stopping and Selection Reasons

Stepwise selection stopped because adding or removing an effect does not improve the SBC criterion.

The model at step 5 is selected.

Selected Effects:Intercept nHits nBB YrMajor


The coefficient panel in Figure 19.5 enables you to visualize the selection process. In this plot, standardized coefficients of all the effects that are selected at some step of the stepwise method are plotted as a function of the step number. This enables you to assess the relative importance of the effects that are selected at any step of the selection process and to know when effects entered the model. The lower plot in the panel shows how the criterion that is used to choose the selected model changes as effects enter or leave the model.

Figure 19.5: Coefficient Progression

Coefficient Progression


The criterion panel in Figure 19.6 provides a graphical view of the progression of the fit criteria as the selection process evolves.

Figure 19.6: Criterion Panel

Criterion Panel


The "Analysis of Variance," "Fit Statistics," and "Parameter Estimates" tables shown in Figure 19.7 display details of the selected model.

Figure 19.7: Details of the Selected Model

The REGSELECT Procedure
 
Selected Model

Analysis of Variance
SourceDFSum of
Squares
Mean
Square
F ValuePr > F
Model3120.5255340.17518120.12<.0001
Error25986.628200.33447  
Corrected Total262207.15373   

Root MSE0.57834
R-Square0.58182
Adj R-Sq0.57697
AIC-19.06903
AICC-18.83557
SBC-269.78041
ASE0.32938

Parameter Estimates
ParameterDFEstimateStandard
Error
t ValuePr > |t|
Intercept14.0139110.11129036.07<.0001
nHits10.0079290.0009947.98<.0001
nBB10.0072800.0020493.550.0005
YrMajor10.1006630.00755113.33<.0001


Finally, a table is displayed that shows the amount of time (in seconds) that PROC REGSELECT required to perform the different tasks in the analysis.

Figure 19.8: Procedure Timing

Task Timing
TaskSecondsPercent
Setup and Parsing0.0253.68%
Levelization0.0124.12%
Model Initialization0.002.31%
SSCP Computation0.004.77%
Model Selection0.005.42%
Cleanup0.009.21%
Total0.04100.00%


You might want to examine regression diagnostics for the selected model to investigate whether collinearity among the selected parameters or the presence of outlying or high-leverage observations might be affecting the fit. The following statements include some options and statements to obtain these diagnostics:

proc regselect data=mycas.baseball;
  class league division;
  model logSalary = nAtBat nHits nHome nRuns nRBI nBB
                    yrMajor crAtBat crHits crHome crRuns crRbi
                    crBB league division nOuts nAssts nError / vif clb;
  selection method=stepwise;
  output out=mycas.baseballOut
         p=predictedLogSalary r h cookd rstudent copyvars=(name);
run;

The VIF and CLB options in the MODEL statement request variance inflation factors and 95% confidence limits, respectively, for the parameter estimates. Figure 19.9 shows the "Parameter Estimates" table, which displays these requested statistics. The variance inflation factors (VIF) measure the inflation in the variances of the parameter estimates due to collinearities that exist among the regressor (independent) variables. Although there are no formal criteria for deciding whether a VIF is large enough to affect the predicted values, the VIF values for the selected effects in this example are small enough to indicate that there are no collinearity issues among the selected regressors.

Figure 19.9: Parameter Estimates with Additional Statistics

The REGSELECT Procedure
 
Selected Model

Parameter Estimates
ParameterDFEstimateStandard
Error
t ValuePr > |t|Variance
Inflation
95% Confidence Limits
Intercept14.0139110.11129036.07<.000103.794764.23306
nHits10.0079290.0009947.98<.00011.496420.005970.00989
nBB10.0072800.0020493.550.00051.521090.003250.01131
YrMajor10.1006630.00755113.33<.00011.024880.085790.11553


By default, SAS Viya statistical procedures do not include all variables from the input data table in output data tables. The COPYVARS= option in the OUTPUT statement specifies that the variable name in the input data table be added as an identification variable in the baseballOut data table that is produced by the OUTPUT statement. In addition to this variable, the OUTPUT statement requests that predicted values, raw residuals, leverage values, Cook’s D statistics, and studentized residuals be added to the output data table. Note that default names are used for these statistics, except for the predicted values for which a specified name, predictedLogSalary, is supplied. The following statements use PROC PRINT to display five observations in this output data table:

proc print data=mycas.baseballOut(obs=5);
run;

Figure 19.10: First 5 Observations of the baseballOut Data Set

ObspredictedLogSalaryResidualCOOKDHRSTUDENTName
14.73980..0.016087.Allanson, Andy
26.50852-0.29392.0007301780.011060-0.51031Dawson, Andre
34.66148-0.41299.0025168740.018999-0.72031Newman, Al
46.525180.47788.0030691500.0173610.83308Thornton, Andre
55.654680.65524.0020208320.0062191.13715Van Slyke, Andy


Last updated: December 21, 2018