NAG Library Routine Document
g02dff (linregm_var_del)
1
Purpose
g02dff deletes an independent variable from a general linear regression model.
2
Specification
Fortran Interface
Integer, Intent (In) | :: | ip, ldq, indx | Integer, Intent (Inout) | :: | ifail | Real (Kind=nag_wp), Intent (Inout) | :: | q(ldq,ip+1), rss | Real (Kind=nag_wp), Intent (Out) | :: | wk(2*ip) |
|
C Header Interface
#include <nagmk26.h>
void |
g02dff_ (const Integer *ip, double q[], const Integer *ldq, const Integer *indx, double *rss, double wk[], Integer *ifail) |
|
3
Description
When selecting a linear regression model it is sometimes useful to drop independent variables from the model and to examine the resulting sub-model.
g02dff updates the
decomposition used in the computation of the linear regression model. The
decomposition may come from
g02daf or
g02def, or a previous call to
g02dff.
For the general linear regression model with
independent variables fitted
g02daf or
g02def compute a
decomposition of the (weighted) independent variables and form an upper triangular matrix
and a vector
. To remove an independent variable
and
have to be updated. The column of
corresponding to the variable to be dropped is removed and the matrix is then restored to upper triangular form by applying a series of Givens rotations. The rotations are then applied to
. Note only the first
elements of
are affected.
The method used means that while the updated values of
and
are computed an updated value of
from the
decomposition is not available so a call to
g02def cannot be made after a call to
g02dff.
g02ddf can be used to calculate the parameter estimates,
, from the information provided by
g02dff.
4
References
Golub G H and Van Loan C F (1996) Matrix Computations (3rd Edition) Johns Hopkins University Press, Baltimore
Hammarling S (1985) The singular value decomposition in multivariate statistics SIGNUM Newsl. 20(3) 2–25
5
Arguments
- 1: – IntegerInput
-
On entry: , the number of independent variables already in the model.
Constraint:
.
- 2: – Real (Kind=nag_wp) arrayInput/Output
-
On entry: the results of the
decomposition as returned by routines
g02daf,
g02dcf,
g02def or
g02eef, or previous calls to
g02dff.
On exit: the updated decomposition.
- 3: – IntegerInput
-
On entry: the first dimension of the array
q as declared in the (sub)program from which
g02dff is called.
Constraint:
.
- 4: – IntegerInput
-
On entry: indicates which independent variable is to be deleted from the model.
Constraint:
.
-
On entry: the residual sum of squares for the full regression.
Constraint:
.
On exit: the residual sum of squares with the (
indx)th variable removed. Note that the residual sum of squares will only be valid if the regression is of full rank, otherwise the residual sum of squares should be obtained using
g02ddf.
- 6: – Real (Kind=nag_wp) arrayWorkspace
-
- 7: – IntegerInput/Output
-
On entry:
ifail must be set to
,
. If you are unfamiliar with this argument you should refer to
Section 3.4 in How to Use the NAG Library and its Documentation for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value
is recommended. If the output of error messages is undesirable, then the value
is recommended. Otherwise, if you are not familiar with this argument, the recommended value is
.
When the value is used it is essential to test the value of ifail on exit.
On exit:
unless the routine detects an error or a warning has been flagged (see
Section 6).
6
Error Indicators and Warnings
If on entry
or
, explanatory error messages are output on the current error message unit (as defined by
x04aaf).
Errors or warnings detected by the routine:
-
On entry, .
Constraint: and .
On entry, .
Constraint: .
On entry, and .
Constraint: .
On entry, .
Constraint: .
-
On entry, .
An unexpected error has been triggered by this routine. Please
contact
NAG.
See
Section 3.9 in How to Use the NAG Library and its Documentation for further information.
Your licence key may have expired or may not have been installed correctly.
See
Section 3.8 in How to Use the NAG Library and its Documentation for further information.
Dynamic memory allocation failed.
See
Section 3.7 in How to Use the NAG Library and its Documentation for further information.
7
Accuracy
There will inevitably be some loss in accuracy in fitting a model by dropping terms from a more complex model rather than fitting it afresh using
g02daf.
8
Parallelism and Performance
g02dff makes calls to BLAS and/or LAPACK routines, which may be threaded within the vendor library used by this implementation. Consult the documentation for the vendor library for further information.
Please consult the
X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the
Users' Note for your implementation for any additional implementation-specific information.
None.
10
Example
A dataset consisting of
observations on four independent variables and one dependent variable is read in. The full model, including a mean term, is fitted using
g02daf. The value of
indx is read in and that variable dropped from the regression. The parameter estimates are calculated by
g02ddf and printed. This process is repeated until
indx is
.
10.1
Program Text
Program Text (g02dffe.f90)
10.2
Program Data
Program Data (g02dffe.d)
10.3
Program Results
Program Results (g02dffe.r)