NAG Library Routine Document
g02dcf (linregm_obs_edit)
1
Purpose
g02dcf adds or deletes an observation from a general regression model fitted by
g02daf.
2
Specification
Fortran Interface
Subroutine g02dcf ( |
update, mean, weight, m, isx, q, ldq, ip, x, ix, y, wt, rss, wk, ifail) |
Integer, Intent (In) | :: | m, isx(m), ldq, ip, ix | Integer, Intent (Inout) | :: | ifail | Real (Kind=nag_wp), Intent (In) | :: | x(*), y, wt | Real (Kind=nag_wp), Intent (Inout) | :: | q(ldq,ip+1), rss | Real (Kind=nag_wp), Intent (Out) | :: | wk(3*ip) | Character (1), Intent (In) | :: | update, mean, weight |
|
C Header Interface
#include <nagmk26.h>
void |
g02dcf_ (const char *update, const char *mean, const char *weight, const Integer *m, const Integer isx[], double q[], const Integer *ldq, const Integer *ip, const double x[], const Integer *ix, const double *y, const double *wt, double *rss, double wk[], Integer *ifail, const Charlen length_update, const Charlen length_mean, const Charlen length_weight) |
|
3
Description
g02daf fits a general linear regression model to a dataset. You may wish to change the model by either adding or deleting an observation from the dataset.
g02dcf takes the results from
g02daf and makes the required changes to the vector
and the upper triangular matrix
produced by
g02daf. The regression coefficients, standard errors and the variance-covariance matrix of the regression coefficients can be obtained from
g02ddf after all required changes to the dataset have been made.
g02daf performs a
decomposition on the (weighted)
matrix of independent variables. To add a new observation to a model with
parameters, the upper triangular matrix
and vector
(the first
elements of
) are augmented by the new observation on independent variables in
and dependent variable
. Givens rotations are then used to restore the upper triangular form.
Note: only
and the upper part of
are updated the remainder of the
matrix is unchanged.
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: – Character(1)Input
-
On entry: indicates if an observation is to be added or deleted.
- The observation is added.
- The observation is deleted.
Constraint:
or .
- 2: – Character(1)Input
-
On entry: indicates if a mean has been used in the model.
- A mean term or intercept will have been included in the model by g02daf.
- A model with no mean term or intercept will have been fitted by g02daf.
Constraint:
or .
- 3: – Character(1)Input
-
On entry: indicates if a weight is to be used.
- The new observation is unweighted.
- The new observation is to be weighted and the weight must be supplied in wt.
Constraint:
or .
- 4: – IntegerInput
-
On entry: , the total number of independent variables in the dataset.
Constraint:
.
- 5: – Integer arrayInput
-
On entry: if
is greater than , the value contained in is to be included as a value of , for .
Constraint:
if
, exactly
elements of
isx must be
and if
, exactly
ip elements of
isx must be
.
- 6: – Real (Kind=nag_wp) arrayInput/Output
-
On entry: must be array
q as output by
g02daf,
g02def,
g02dff or
g02eef, or a previous call to
g02dcf.
On exit: the first
ip elements of the first column of
q will contain
the upper triangular part of columns
to
will contain
the remainder is unchanged.
- 7: – IntegerInput
-
On entry: the first dimension of the array
q as declared in the (sub)program from which
g02dcf is called.
Constraint:
.
- 8: – IntegerInput
-
On entry: the number of linear terms in general linear regression model (including mean if there is one).
Constraint:
.
- 9: – Real (Kind=nag_wp) arrayInput
-
Note: the dimension of the array
x
must be at least
.
On entry: the
ip values for the dependent variables of the new observation,
. The positions will depend on the value of
ix.
- 10: – IntegerInput
-
On entry: the increment for elements of
x.
Two situations are common:
- The values of are to be chosen from consecutive locations in x, i.e., .
- The values of are to be chosen from a row of a two-dimensional array with first dimension ldx, i.e., .
Constraint:
.
- 11: – Real (Kind=nag_wp)Input
-
On entry: the value of the dependent variable for the new observation, .
- 12: – Real (Kind=nag_wp)Input
-
On entry: if
,
wt must contain the weight to be used with the new observation.
If , the observation is not included in the model.
If
,
wt is not referenced.
Constraint:
if , .
-
On entry: the value of the residual sums of squares for the original set of observations.
Constraint:
.
On exit: the updated values of the residual sums of squares.
Note: this will only be valid if the model is of full rank.
- 14: – Real (Kind=nag_wp) arrayWorkspace
-
- 15: – 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, elements of instead of .
On entry, elements of instead of (for mean) .
On entry, .
Constraint: .
On entry, .
Constraint: .
On entry, and .
Constraint: .
On entry, .
Constraint: or .
On entry, .
Constraint: .
On entry, .
Constraint: or .
On entry, .
Constraint: or .
-
On entry, .
Constraint: .
-
The
matrix could not be updated. This may occur if an attempt is made to delete an observation which was not in the original dataset or to add an observation to a
matrix with a zero diagonal element. This error is also possible when removing an observation which reduces the rank of design matrix. In such cases the model should be recomputed using
g02daf.
-
The residual sums of squares cannot be updated. This will occur if the input residual sum of squares is less than the calculated decrease in residual sum of squares when the new observation is deleted.
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
Higher accuracy is achieved by updating the matrix rather than the traditional methods of updating .
8
Parallelism and Performance
g02dcf 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.
Care should be taken with the use of
g02dcf.
(a) |
It is possible to delete observations which were not included in the original model. |
(b) |
If several additions/deletions have been performed you are advised to recompute the regression using g02daf. |
(c) |
Adding or deleting observations can alter the rank of the model. Such changes will only be detected when a call to g02ddf has been made. g02ddf should also be used to compute the new residual sum of squares when the model is not of full rank. |
g02dcf may also be used after
g02def,
g02dff and
g02eef.
10
Example
A dataset consisting of
observations with four independent variables is read in and a general linear regression model fitted by
g02daf and parameter estimates printed. The last observation is then dropped and the parameter estimates recalculated, using
g02ddf, and printed. Finally a new observation is added and new parameter estimates computed and printed.
10.1
Program Text
Program Text (g02dcfe.f90)
10.2
Program Data
Program Data (g02dcfe.d)
10.3
Program Results
Program Results (g02dcfe.r)