NAG FL Interface
g02def (linregm_​var_​add)

1 Purpose

g02def adds a new independent variable to a general linear regression model.

2 Specification

Fortran Interface
Subroutine g02def ( weight, n, ip, q, ldq, p, wt, x, rss, tol, ifail)
Integer, Intent (In) :: n, ip, ldq
Integer, Intent (Inout) :: ifail
Real (Kind=nag_wp), Intent (In) :: wt(*), x(n), tol
Real (Kind=nag_wp), Intent (Inout) :: q(ldq,ip+2), p(ip+1)
Real (Kind=nag_wp), Intent (Out) :: rss
Character (1), Intent (In) :: weight
C Header Interface
#include <nag.h>
void  g02def_ (const char *weight, const Integer *n, const Integer *ip, double q[], const Integer *ldq, double p[], const double wt[], const double x[], double *rss, const double *tol, Integer *ifail, const Charlen length_weight)
The routine may be called by the names g02def or nagf_correg_linregm_var_add.

3 Description

A linear regression model may be built up by adding new independent variables to an existing model. g02def updates the QR decomposition used in the computation of the linear regression model. The QR decomposition may come from g02daf or a previous call to g02def. The general linear regression model is defined by
y=Xβ+ε,  
where y is a vector of n observations on the dependent variable,
X is an n by p matrix of the independent variables of column rank k,
β is a vector of length p of unknown parameters,
and ε is a vector of length n of unknown random errors such that varε=Vσ2, where V is a known diagonal matrix.
If V=I, the identity matrix, then least squares estimation is used. If VI, then for a given weight matrix WV-1, weighted least squares estimation is used.
The least squares estimates, β^ of the parameters β minimize y-XβT y-Xβ while the weighted least squares estimates, minimize y-XβT W y-Xβ .
The parameter estimates may be found by computing a QR decomposition of X (or W12X in the weighted case), i.e.,
X=QR*or  W12X=QR*,  
where R*= R 0 and R is a p by p upper triangular matrix and Q is an n by n orthogonal matrix.
If R is of full rank, then β^ is the solution to
Rβ^=c1,  
where c=QTy (or QTW12y) and c1 is the first p elements of c.
If R is not of full rank a solution is obtained by means of a singular value decomposition (SVD) of R.
To add a new independent variable, xp+1, R and c have to be updated. The matrix Qp+1 is found such that Qp+1T R:QTxp+1 (or Qp+1T R:QTW12xp+1) is upper triangular. The vector c is then updated by multiplying by Qp+1T .
The new independent variable is tested to see if it is linearly related to the existing independent variables by checking that at least one of the values QTxp+1i, for i=p+2,,n, is nonzero.
The new parameter estimates, β^, can then be obtained by a call to g02ddf.
The routine can be used with p=0, in which case R and c are initialized.

4 References

Draper N R and Smith H (1985) Applied Regression Analysis (2nd Edition) Wiley
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
McCullagh P and Nelder J A (1983) Generalized Linear Models Chapman and Hall
Searle S R (1971) Linear Models Wiley

5 Arguments

1: weight Character(1) Input
On entry: indicates if weights are to be used.
weight='U'
Least squares estimation is used.
weight='W'
Weighted least squares is used and weights must be supplied in array wt.
Constraint: weight='U' or 'W'.
2: n Integer Input
On entry: n, the number of observations.
Constraint: n1.
3: ip Integer Input
On entry: p, the number of independent variables already in the model.
Constraint: ip0 and ip<n.
4: qldqip+2 Real (Kind=nag_wp) array Input/Output
On entry: if ip0, q must contain the results of the QR decomposition for the model with p parameters as returned by g02daf or a previous call to g02def.
If ip=0, the first column of q should contain the n values of the dependent variable, y.
On exit: the results of the QR decomposition for the model with p+1 parameters:
  • the first column of q contains the updated value of c;
  • the columns 2 to ip+1 are unchanged;
  • the first ip+1 elements of column ip+2 contain the new column of R, while the remaining n-ip-1 elements contain details of the matrix Qp+1.
5: ldq Integer Input
On entry: the first dimension of the array q as declared in the (sub)program from which g02def is called.
Constraint: ldqn.
6: pip+1 Real (Kind=nag_wp) array Input/Output
On entry: contains further details of the QR decomposition used. The first ip elements of p must contain the zeta values for the QR decomposition (see f08aef for details).
The first ip elements of array p are provided by g02daf or by previous calls to g02def.
On exit: the first ip elements of p are unchanged and the ip+1th element contains the zeta value for Qp+1.
7: wt* Real (Kind=nag_wp) array Input
Note: the dimension of the array wt must be at least n if weight='W'.
On entry: if weight='W' wt must contain the weights to be used with the model.
If wti=0.0, the ith observation is not included in the model, in which case the effective number of observations is the number of observations with nonzero weights.
If weight='U', wt is not referenced and the effective number of observations is n.
Constraint: if weight='W', wti0.0, for i=1,2,,n.
8: xn Real (Kind=nag_wp) array Input
On entry: x, the new independent variable.
9: rss Real (Kind=nag_wp) Output
On exit: the residual sum of squares for the new fitted model.
Note:  this will only be valid if the model is of full rank, see Section 9.
10: tol Real (Kind=nag_wp) Input
On entry: the value of tol is used to decide if the new independent variable is linearly related to independent variables already included in the model. If the new variable is linearly related then c is not updated. The smaller the value of tol the stricter the criterion for deciding if there is a linear relationship.
Suggested value: tol=0.000001.
Constraint: tol>0.0.
11: ifail Integer Input/Output
On entry: ifail must be set to 0, -1 or 1 to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of 0 causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of -1 means that an error message is printed while a value of 1 means that it is not.
If halting is not appropriate, the value -1 or 1 is recommended. If message printing is undesirable, then the value 1 is recommended. Otherwise, the value -1 is recommended since useful values can be provided in some output arguments even when ifail0 on exit. 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:
Note: in some cases g02def may return useful information.
ifail=1
On entry, ip=value.
Constraint: ip0.
On entry, ip=value and n=value.
Constraint: ip<n.
On entry, ldq=value and n=value.
Constraint: ldqn.
On entry, n=value.
Constraint: n1.
On entry, tol=value.
Constraint: tol>0.0.
On entry, weight=value.
Constraint: weight='W' or 'U'.
ifail=2
On entry, wtvalue<0.0.
Constraint: wti0.0, for i=1,2,,n.
ifail=3
x variable is a linear combination of existing model terms.
ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 7 in the Introduction to the NAG Library FL Interface for further information.
ifail=-399
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library FL Interface for further information.
ifail=-999
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.

7 Accuracy

The accuracy is closely related to the accuracy of f08agf which should be consulted for further details.

8 Parallelism and Performance

g02def is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
g02def 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

It should be noted that the residual sum of squares produced by g02def may not be correct if the model to which the new independent variable is added is not of full rank. In such a case g02ddf should be used to calculate the residual sum of squares.

10 Example

A dataset consisting of 12 observations is read in. The four independent variables are stored in the array x while the dependent variable is read into the first column of q. If the character variable mean indicates that a mean should be included in the model a variable taking the value 1.0 for all observations is set up and fitted. Subsequently, one variable at a time is selected to enter the model as indicated by the input value of indx. After the variable has been added the parameter estimates are calculated by g02ddf and the results printed. This is repeated until the input value of indx is 0.

10.1 Program Text

Program Text (g02defe.f90)

10.2 Program Data

Program Data (g02defe.d)

10.3 Program Results

Program Results (g02defe.r)