G02EFF (PDF version)
G02 Chapter Contents
G02 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

G02EFF

Note:  before using this routine, please read the Users' Note for your implementation to check the interpretation of bold italicised terms and other implementation-dependent details.

 Contents

    1  Purpose
    7  Accuracy

1  Purpose

G02EFF calculates a full stepwise selection from p variables by using Clarke's sweep algorithm on the correlation matrix of a design and data matrix, Z. The (weighted) variance-covariance, (weighted) means and sum of weights of Z must be supplied.

2  Specification

SUBROUTINE G02EFF ( M, N, WMEAN, C, SW, ISX, FIN, FOUT, TAU, B, SE, RSQ, RMS, DF, MONLEV, MONFUN, IUSER, RUSER, IFAIL)
INTEGER  M, N, ISX(M), DF, MONLEV, IUSER(*), IFAIL
REAL (KIND=nag_wp)  WMEAN(M+1), C((M+1)*(M+2)/2), SW, FIN, FOUT, TAU, B(M+1), SE(M+1), RSQ, RMS, RUSER(*)
EXTERNAL  MONFUN

3  Description

The general multiple linear regression model is defined by
y = β0 +Xβ+ε,  
where
G02EFF employs a full stepwise regression to select a subset of explanatory variables from the p available variables (the intercept is included in the model) and computes regression coefficients and their standard errors, and various other statistical quantities, by minimizing the sum of squares of residuals. The method applies repeatedly a forward selection step followed by a backward elimination step and halts when neither step updates the current model.
The criterion used to update a current model is the variance ratio of residual sum of squares. Let s1 and s2 be the residual sum of squares of the current model and this model after undergoing a single update, with degrees of freedom q1 and q2, respectively. Then the condition:
s2 - s1 / q2 - q1 s1 / q1 > f1 ,  
must be satisfied if a variable k will be considered for entry to the current model, and the condition:
s1 - s2 / q1 - q2 s1 / q1 < f2 ,  
must be satisfied if a variable k will be considered for removal from the current model, where f1 and f2 are user-supplied values and f2f1.
In the entry step the entry statistic is computed for each variable not in the current model. If no variable is associated with a test value that exceeds f1 then this step is terminated; otherwise the variable associated with the largest value for the entry statistic is entered into the model.
In the removal step the removal statistic is computed for each variable in the current model. If no variable is associated with a test value less than f2 then this step is terminated; otherwise the variable associated with the smallest value for the removal statistic is removed from the model.
The data values X and y are not provided as input to the routine. Instead, summary statistics of the design and data matrix Z=Xy are required.
Explanatory variables are entered into and removed from the current model by using sweep operations on the correlation matrix R of Z, given by:
R = 1 r1p r1y rp1 1 rpy ry1 ryp 1 ,  
where rij is the correlation between the explanatory variables i and j, for i=1,2,,p and j=1,2,,p, and ryi (and riy) is the correlation between the response variable y and the ith explanatory variable, for i=1,2,,p.
A sweep operation on the kth row and column (kp) of R replaces:
rkk ​ by ​ -1 / rkk ; rik ​ by ​ rik / rkk ,  i=1,2,,p+1 ​ ​ ik ; rkj ​ by ​ rkj / rkk ,  j=1,2,,p+1 ​ ​ jk ; rij ​ by ​ rij - rik rkj / rkk ,  ​ i=1,2,,p+1 ​ ​ ik ; ​ j=1,2,,p+1 ​ ​ jk .  
The kth explanatory variable is eligible for entry into the current model if it satisfies the collinearity tests: rkk>τ and
rii - rik rki rkk τ1 ,  
for a user-supplied value (>0) of τ and where the index i runs over explanatory variables in the current model. The sweep operation is its own inverse, therefore pivoting on an explanatory variable k in the current model has the effect of removing it from the model.
Once the stepwise model selection procedure is finished, the routine calculates:
(a) the least squares estimate for the ith explanatory variable included in the fitted model;
(b) standard error estimates for each coefficient in the final model;
(c) the square root of the mean square of residuals and its degrees of freedom;
(d) the multiple correlation coefficient.
The routine makes use of the symmetry of the sweep operations and correlation matrix which reduces by almost one half the storage and computation required by the sweep algorithm, see Clarke (1981) for details.

4  References

Clarke M R B (1981) Algorithm AS 178: the Gauss–Jordan sweep operator with detection of collinearity Appl. Statist. 31 166–169
Dempster A P (1969) Elements of Continuous Multivariate Analysis Addison–Wesley
Draper N R and Smith H (1985) Applied Regression Analysis (2nd Edition) Wiley

5  Parameters

1:     M – INTEGERInput
On entry: the number of explanatory variables available in the design matrix, Z.
Constraint: M>1.
2:     N – INTEGERInput
On entry: the number of observations used in the calculations.
Constraint: N>1.
3:     WMEANM+1 – REAL (KIND=nag_wp) arrayInput
On entry: the mean of the design matrix, Z.
4:     CM+1×M+2/2 – REAL (KIND=nag_wp) arrayInput
On entry: the upper-triangular variance-covariance matrix packed by column for the design matrix, Z. Because the routine computes the correlation matrix R from C, the variance-covariance matrix need only be supplied up to a scaling factor.
5:     SW – REAL (KIND=nag_wp)Input
On entry: if weights were used to calculate C then SW is the sum of positive weight values; otherwise SW is the number of observations used to calculate C.
Constraint: SW>1.0.
6:     ISXM – INTEGER arrayInput/Output
On entry: the value of ISXj determines the set of variables used to perform full stepwise model selection, for j=1,2,,M.
ISXj=-1
To exclude the variable corresponding to the jth column of X from the final model.
ISXj=1
To consider the variable corresponding to the jth column of X for selection in the final model.
ISXj=2
To force the inclusion of the variable corresponding to the jth column of X in the final model.
Constraint: ISXj=-1,1​ or ​2, for j=1,2,,M.
On exit: the value of ISXj indicates the status of the jth explanatory variable in the model.
ISXj=-1
Forced exclusion.
ISXj=0
Excluded.
ISXj=1
Selected.
ISXj=2
Forced selection.
7:     FIN – REAL (KIND=nag_wp)Input
On entry: the value of the variance ratio which an explanatory variable must exceed to be included in a model.
Suggested value: FIN=4.0 
Constraint: FIN>0.0.
8:     FOUT – REAL (KIND=nag_wp)Input
On entry: the explanatory variable in a model with the lowest variance ratio value is removed from the model if its value is less than FOUT. FOUT is usually set equal to the value of FIN; a value less than FIN is occasionally preferred.
Suggested value: FOUT=FIN 
Constraint: 0.0FOUTFIN.
9:     TAU – REAL (KIND=nag_wp)Input
On entry: the tolerance, τ, for detecting collinearities between variables when adding or removing an explanatory variable from a model. Explanatory variables deemed to be collinear are excluded from the final model.
Suggested value: TAU=1.0×10-6 
Constraint: TAU>0.0.
10:   BM+1 – REAL (KIND=nag_wp) arrayOutput
On exit: B1 contains the estimate for the intercept term in the fitted model. If ISXj0 then Bj+1 contains the estimate for the jth explanatory variable in the fitted model; otherwise Bj+1=0.
11:   SEM+1 – REAL (KIND=nag_wp) arrayOutput
On exit: SEj contains the standard error for the estimate of Bj, for j=1,2,,M+1.
12:   RSQ – REAL (KIND=nag_wp)Output
On exit: the R2-statistic for the fitted regression model.
13:   RMS – REAL (KIND=nag_wp)Output
On exit: the mean square of residuals for the fitted regression model.
14:   DF – INTEGEROutput
On exit: the number of degrees of freedom for the sum of squares of residuals.
15:   MONLEV – INTEGERInput
On entry: if a subroutine is provided by you to monitor the model selection process, set MONLEV to 1; otherwise set MONLEV to 0.
Constraint: MONLEV=0 or 1.
16:   MONFUN – SUBROUTINE, supplied by the NAG Library or the user.External Procedure
You may define your own function or specify the NAG defined default function G02EFH.
If MONLEV=0, MONFUN is not referenced; otherwise its specification is:
The specification of MONFUN is:
SUBROUTINE MONFUN ( FLAG, VAR, VAL, IUSER, RUSER)
INTEGER  VAR, IUSER(*)
REAL (KIND=nag_wp)  VAL, RUSER(*)
CHARACTER(1)  FLAG
1:     FLAG – CHARACTER(1)Input
On entry: the value of FLAG indicates the stage of the stepwise selection of explanatory variables.
FLAG='A'
Variable VAR was added to the current model.
FLAG='B'
Beginning the backward elimination step.
FLAG='C'
Variable VAR failed the collinearity test and is excluded from the model.
FLAG='D'
Variable VAR was dropped from the current model.
FLAG='F'
Beginning the forward selection step
FLAG='K'
Backward elimination did not remove any variables from the current model.
FLAG='S'
Starting stepwise selection procedure.
FLAG='V'
The variance ratio for variable VAR takes the value VAL.
FLAG='X'
Finished stepwise selection procedure.
2:     VAR – INTEGERInput
On entry: the index of the explanatory variable in the design matrix Z to which FLAG pertains.
3:     VAL – REAL (KIND=nag_wp)Input
On entry: if FLAG='V', VAL is the variance ratio value for the coefficient associated with explanatory variable index VAR.
4:     IUSER* – INTEGER arrayUser Workspace
5:     RUSER* – REAL (KIND=nag_wp) arrayUser Workspace
MONFUN is called with the parameters IUSER and RUSER as supplied to G02EFF. You are free to use the arrays IUSER and RUSER to supply information to MONFUN as an alternative to using COMMON global variables.
MONFUN must either be a module subprogram USEd by, or declared as EXTERNAL in, the (sub)program from which G02EFF is called. Parameters denoted as Input must not be changed by this procedure.
17:   IUSER* – INTEGER arrayUser Workspace
18:   RUSER* – REAL (KIND=nag_wp) arrayUser Workspace
IUSER and RUSER are not used by G02EFF, but are passed directly to MONFUN and may be used to pass information to this routine as an alternative to using COMMON global variables.
19:   IFAIL – INTEGERInput/Output
On entry: IFAIL must be set to 0, -1​ or ​1. If you are unfamiliar with this parameter you should refer to Section 3.3 in the Essential Introduction for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value -1​ or ​1 is recommended. If the output of error messages is undesirable, then the value 1 is recommended. Otherwise, if you are not familiar with this parameter, the recommended value is 0. When the value -1​ or ​1 is used it is essential to test the value of IFAIL on exit.
On exit: IFAIL=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6  Error Indicators and Warnings

If on entry IFAIL=0 or -1, explanatory error messages are output on the current error message unit (as defined by X04AAF).
Errors or warnings detected by the routine:
IFAIL=1
On entry, FIN=value.
Constraint: FIN > 0.0.
On entry, FOUT=value; FIN=value.
Constraint: 0.0FOUTFIN.
On entry, M=value.
Constraint: M > 1.
On entry, MONLEV=value.
Constraint: MONLEV=0 or 1.
On entry, N=value.
Constraint: N>1.
On entry, SW=value.
Constraint: SW>1.0.
On entry, TAU=value.
Constraint: TAU>0.0.
IFAIL=2
No free variables from which to select.
At least one element of ISX should be set to 1.
On entry, invalid value for ISXvalue=value.
On entry at least one diagonal element of C 0.0.
IFAIL=3
The design and data matrix Z is not positive definite, results may be inaccurate. All output is returned as documented.
IFAIL=4
All variables are collinear, no model to select.
IFAIL=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 3.8 in the Essential Introduction for further information.
IFAIL=-399
Your licence key may have expired or may not have been installed correctly.
See Section 3.7 in the Essential Introduction for further information.
IFAIL=-999
Dynamic memory allocation failed.
See Section 3.6 in the Essential Introduction for further information.

7  Accuracy

G02EFF returns a warning if the design and data matrix is not positive definite.

8  Parallelism and Performance

Not applicable.

9  Further Comments

Although the condition for removing or adding a variable to the current model is based on a ratio of variances, these values should not be interpreted as F-statistics with the usual interpretation of significance unless the probability levels are adjusted to account for correlations between variables under consideration and the number of possible updates (see, e.g., Draper and Smith (1985)).
G02EFF allocates internally O 4×M+ M+1 × M+2 /2+2  of real storage.

10  Example

This example calculates a full stepwise model selection for the Hald data described in Dempster (1969). Means, the upper-triangular variance-covariance matrix and the sum of weights are calculated by G02BUF. The NAG defined default monitor function G02EFH is used to print information at each step of the model selection process.

10.1  Program Text

Program Text (g02effe.f90)

10.2  Program Data

Program Data (g02effe.d)

10.3  Program Results

Program Results (g02effe.r)


G02EFF (PDF version)
G02 Chapter Contents
G02 Chapter Introduction
NAG Library Manual

© The Numerical Algorithms Group Ltd, Oxford, UK. 2015