NAG Library Routine Document
g02ddf
(linregm_update)
1
Purpose
g02ddf calculates the regression arguments for a general linear regression model. It is intended to be called after
g02dcf,
g02def or
g02dff.
2
Specification
Fortran Interface
Subroutine g02ddf ( |
n,
ip,
q,
ldq,
rss,
idf,
b,
se,
cov,
svd,
irank,
p,
tol,
wk,
ifail) |
Integer, Intent (In) | :: |
n,
ip,
ldq | Integer, Intent (Inout) | :: |
ifail | Integer, Intent (Out) | :: |
idf,
irank | Real (Kind=nag_wp), Intent (In) | :: |
q(ldq,ip+1),
tol | Real (Kind=nag_wp), Intent (Inout) | :: |
rss,
p(ip*ip+2*ip) | Real (Kind=nag_wp), Intent (Out) | :: |
b(ip),
se(ip),
cov(ip*(ip+1)/2),
wk(ip*ip+(ip-1)*5) | Logical, Intent (Out) | :: |
svd |
|
C Header Interface
#include nagmk26.h
void |
g02ddf_ (
const Integer *n,
const Integer *ip,
const double q[],
const Integer *ldq,
double *rss,
Integer *idf,
double b[],
double se[],
double cov[],
logical *svd,
Integer *irank,
double p[],
const double *tol,
double wk[],
Integer *ifail) |
|
3
Description
A general linear regression model fitted by
g02daf may be adjusted by adding or deleting an observation using
g02dcf, adding a new independent variable using
g02def or deleting an existing independent variable using
g02dff. Alternatively a model may be constructed by a forward selection procedure using
g02eef. These routines compute the vector
and the upper triangular matrix
.
g02ddf takes these basic results and computes the regression coefficients,
, their standard errors and their variance-covariance matrix.
If
is of full rank, then
is the solution to
where
is the first
elements of
.
If
is not of full rank a solution is obtained by means of a singular value decomposition (SVD) of
,
where
is a
by
diagonal matrix with nonzero diagonal elements,
being the rank of
, and
and
are
by
orthogonal matrices. This gives the solution
being the first
columns of
, i.e.,
, and
being the first
columns of
.
Details of the SVD are made available in the form of the matrix
:
This will be only one of the possible solutions. Other estimates may be obtained by applying constraints to the arguments. These solutions can be obtained by calling
g02dkf after calling
g02ddf. Only certain linear combinations of the arguments will have unique estimates; these are known as estimable functions. These can be estimated using
g02dnf.
The residual sum of squares required to calculate the standard errors and the variance-covariance matrix can either be input or can be calculated if additional information on for the whole sample is provided.
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
Searle S R (1971) Linear Models Wiley
5
Arguments
- 1: – IntegerInput
-
On entry: the number of observations.
Constraint:
.
- 2: – IntegerInput
-
On entry: , the number of terms in the regression model.
Constraint:
.
- 3: – Real (Kind=nag_wp) arrayInput
-
On entry: must be the array
q as output by
g02dcf,
g02def,
g02dff or
g02eef. If on entry
then all
n elements of
are needed. This is provided by routines
g02def,
g02dff or
g02eef.
- 4: – IntegerInput
-
On entry: the first dimension of the array
q as declared in the (sub)program from which
g02ddf is called.
Constraints:
- if , ;
- otherwise .
-
On entry: either the residual sum of squares or a value less than or equal to to indicate that the residual sum of squares is to be calculated by the routine.
On exit: if
on entry, then on exit
rss will contain the residual sum of squares as calculated by
g02ddf.
If
rss was positive on entry, it will be unchanged.
- 6: – IntegerOutput
-
On exit: the degrees of freedom associated with the residual sum of squares.
- 7: – Real (Kind=nag_wp) arrayOutput
-
On exit: the estimates of the parameters, .
- 8: – Real (Kind=nag_wp) arrayOutput
-
On exit: the standard errors of the
parameters given in
b.
- 9: – Real (Kind=nag_wp) arrayOutput
-
On exit: the upper triangular part of the variance-covariance matrix of the
parameter estimates given in
b. They are stored packed by column, i.e., the covariance between the parameter estimate given in
and the parameter estimate given in
,
, is stored in
.
- 10: – LogicalOutput
-
On exit: if a singular value decomposition has been performed, , otherwise .
- 11: – IntegerOutput
-
On exit: the rank of the independent variables.
If , .
If
,
irank is an estimate of the rank of the independent variables.
irank is calculated as the number of singular values greater than
(largest singular value). It is possible for the SVD to be carried out but
irank to be returned as
ip.
- 12: – Real (Kind=nag_wp) arrayOutput
-
On exit: contains details of the singular value decomposition if used.
If
,
p is not referenced.
If
, the first
ip elements of
p will not be referenced, the next
ip values contain the singular values. The following
values contain the matrix
stored by columns.
- 13: – Real (Kind=nag_wp)Input
-
On entry: the value of
tol is used to decide if the independent variables are of full rank and, if not, what is the rank of the independent variables. The smaller the value of
tol the stricter the criterion for selecting the singular value decomposition. If
, the singular value decomposition will never be used, this may cause run time errors or inaccuracies if the independent variables are not of full rank.
Suggested value:
.
Constraint:
.
- 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, .
Constraint: .
On entry, and .
Constraint: if , .
On entry, and .
Constraint: .
On entry, .
Constraint: .
On entry, .
Constraint: .
-
The degrees of freedom for error are less than or equal to . In this case the estimates of are returned but not the standard errors or covariances.
-
SVD solution failed to converge.
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
The accuracy of the results will depend on the accuracy of the input matrix, which may lose accuracy if a large number of observations or variables have been dropped.
8
Parallelism and Performance
g02ddf is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
g02ddf 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 and four independent variables is input and a regression model fitted by calls to
g02def. The arguments are then calculated by
g02ddf and the results printed.
10.1
Program Text
Program Text (g02ddfe.f90)
10.2
Program Data
Program Data (g02ddfe.d)
10.3
Program Results
Program Results (g02ddfe.r)