g02ef calculates a full stepwise selection from variables by using Clarke's sweep algorithm on the correlation matrix of a design and data matrix, . The (weighted) variance-covariance, (weighted) means and sum of weights of must be supplied.
Syntax
C# |
---|
public static void g02ef( int m, int n, double[] wmean, double[] c, double sw, int[] isx, double fin, double fout, double tau, double[] b, double[] se, out double rsq, out double rms, out int df, int monlev, G02..::..G02EF_MONFUN monfun, out int ifail ) |
Visual Basic |
---|
Public Shared Sub g02ef ( _ m As Integer, _ n As Integer, _ wmean As Double(), _ c As Double(), _ sw As Double, _ isx As Integer(), _ fin As Double, _ fout As Double, _ tau As Double, _ b As Double(), _ se As Double(), _ <OutAttribute> ByRef rsq As Double, _ <OutAttribute> ByRef rms As Double, _ <OutAttribute> ByRef df As Integer, _ monlev As Integer, _ monfun As G02..::..G02EF_MONFUN, _ <OutAttribute> ByRef ifail As Integer _ ) |
Visual C++ |
---|
public: static void g02ef( int m, int n, array<double>^ wmean, array<double>^ c, double sw, array<int>^ isx, double fin, double fout, double tau, array<double>^ b, array<double>^ se, [OutAttribute] double% rsq, [OutAttribute] double% rms, [OutAttribute] int% df, int monlev, G02..::..G02EF_MONFUN^ monfun, [OutAttribute] int% ifail ) |
F# |
---|
static member g02ef : m : int * n : int * wmean : float[] * c : float[] * sw : float * isx : int[] * fin : float * fout : float * tau : float * b : float[] * se : float[] * rsq : float byref * rms : float byref * df : int byref * monlev : int * monfun : G02..::..G02EF_MONFUN * ifail : int byref -> unit |
Parameters
- m
- Type: System..::..Int32On entry: the number of explanatory variables available in the design matrix, .Constraint: .
- n
- Type: System..::..Int32On entry: the number of observations used in the calculations.Constraint: .
- wmean
- Type: array<System..::..Double>[]()[][]An array of size []On entry: the mean of the design matrix, .
- c
- Type: array<System..::..Double>[]()[][]An array of size []On entry: the upper-triangular variance-covariance matrix packed by column for the design matrix, . Because the method computes the correlation matrix from c, the variance-covariance matrix need only be supplied up to a scaling factor.
- sw
- Type: System..::..DoubleOn 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: .
- isx
- Type: array<System..::..Int32>[]()[][]An array of size [m]On entry: the value of determines the set of variables used to perform full stepwise model selection, for .
- To exclude the variable corresponding to the th column of from the final model.
- To consider the variable corresponding to the th column of for selection in the final model.
- To force the inclusion of the variable corresponding to the th column of in the final model.
Constraint: , for .On exit: the value of indicates the status of the th explanatory variable in the model.- Forced exclusion.
- Excluded.
- Selected.
- Forced selection.
- fin
- Type: System..::..DoubleOn entry: the value of the variance ratio which an explanatory variable must exceed to be included in a model.Suggested value:Constraint: .
- fout
- Type: System..::..DoubleOn 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:Constraint: .
- tau
- Type: System..::..DoubleOn 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:Constraint: .
- b
- Type: array<System..::..Double>[]()[][]An array of size []On exit: contains the estimate for the intercept term in the fitted model. If then contains the estimate for the th explanatory variable in the fitted model; otherwise .
- se
- Type: array<System..::..Double>[]()[][]An array of size []On exit: contains the standard error for the estimate of , for .
- rsq
- Type: System..::..Double%On exit: the -statistic for the fitted regression model.
- rms
- Type: System..::..Double%On exit: the mean square of residuals for the fitted regression model.
- df
- Type: System..::..Int32%On exit: the number of degrees of freedom for the sum of squares of residuals.
- monlev
- Type: System..::..Int32On entry: if a submethod is provided by you to monitor the model selection process, set monlev to ; otherwise set monlev to .Constraint: or .
- monfun
- Type: NagLibrary..::..G02..::..G02EF_MONFUNYou may define your own function or specify the NAG defined default function G02EFH.
A delegate of type G02EF_MONFUN.
- ifail
- Type: System..::..Int32%On exit: unless the method detects an error or a warning has been flagged (see [Error Indicators and Warnings]).
Description
The general multiple linear regression model is defined by
where
- is a vector of observations on the dependent variable,
- is an intercept coefficient,
- is an by matrix of explanatory variables,
- is a vector of unknown coefficients, and
- is a vector of length of unknown, Normally distributed, random errors.
g02ef employs a full stepwise regression to select a subset of explanatory variables from the 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 and be the residual sum of squares of the current model and this model after undergoing a single update, with degrees of freedom and , respectively. Then the condition:
must be satisfied if a variable will be considered for entry to the current model, and the condition:
must be satisfied if a variable will be considered for removal from the current model, where and are user-supplied values and .
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 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 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 and are not provided as input to the method. Instead, summary statistics of the design and data matrix are required.
Explanatory variables are entered into and removed from the current model by using sweep operations on the correlation matrix of , given by:
where is the correlation between the explanatory variables and , for and , and (and ) is the correlation between the response variable and the th explanatory variable, for .
A sweep operation on the th row and column () of replaces:
The th explanatory variable is eligible for entry into the current model if it satisfies the collinearity tests: and
for a user-supplied value () of and where the index runs over explanatory variables in the current model. The sweep operation is its own inverse, therefore pivoting on an explanatory variable in the current model has the effect of removing it from the model.
Once the stepwise model selection procedure is finished, the method calculates:
(a) | the least squares estimate for the th 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 method 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.
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
Error Indicators and Warnings
Errors or warnings detected by the method:
On entry, , or , or , or , or , or , or .
On entry, at least one element of isx was set incorrectly, or there are no explanatory variables to select from , for , or invalid value for monlev.
- Warning: the design and data matrix is not positive definite, results may be inaccurate.
- All variables are collinear, there is no model to select.
Accuracy
g02ef returns a warning if the design and data matrix is not positive definite.
Parallelism and Performance
None.
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 -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)).
g02ef allocates internally of real storage.