NAG Library Routine Document

g02dff  (linregm_var_del)

 Contents

    1  Purpose
    7  Accuracy

1
Purpose

g02dff deletes an independent variable from a general linear regression model.

2
Specification

Fortran Interface
Subroutine g02dff ( ip, q, ldq, indx, rss, wk, ifail)
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 QR decomposition used in the computation of the linear regression model. The QR decomposition may come from g02daf or g02def, or a previous call to g02dff.
For the general linear regression model with p independent variables fitted g02daf or g02def compute a QR decomposition of the (weighted) independent variables and form an upper triangular matrix R and a vector c. To remove an independent variable R and c have to be updated. The column of R 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 c. Note only the first p elements of c are affected.
The method used means that while the updated values of R and c are computed an updated value of Q from the QR 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:     ip – IntegerInput
On entry: p, the number of independent variables already in the model.
Constraint: ip1.
2:     qldqip+1 – Real (Kind=nag_wp) arrayInput/Output
On entry: the results of the QR decomposition as returned by routines g02daf, g02dcf, g02def or g02eef, or previous calls to g02dff.
On exit: the updated QR decomposition.
3:     ldq – IntegerInput
On entry: the first dimension of the array q as declared in the (sub)program from which g02dff is called.
Constraint: ldqip.
4:     indx – IntegerInput
On entry: indicates which independent variable is to be deleted from the model.
Constraint: 1indxip.
5:     rss – Real (Kind=nag_wp)Input/Output
On entry: the residual sum of squares for the full regression.
Constraint: rss0.0.
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:     wk2×ip – Real (Kind=nag_wp) arrayWorkspace
7:     ifail – IntegerInput/Output
On entry: ifail must be set to 0, -1​ or ​1. 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 -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 argument, 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, indx=value.
Constraint: indx1 and indxip.
On entry, ip=value.
Constraint: ip1.
On entry, ldq=value and ip=value.
Constraint: ldqip.
On entry, rss=value.
Constraint: rss0.0.
ifail=2
On entry, qvaluevalue=0.0.
ifail=-99
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.
ifail=-399
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.
ifail=-999
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.

9
Further Comments

None.

10
Example

A dataset consisting of 12 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 0.

10.1
Program Text

Program Text (g02dffe.f90)

10.2
Program Data

Program Data (g02dffe.d)

10.3
Program Results

Program Results (g02dffe.r)

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