G02KAF (PDF version)
G02 Chapter Contents
G02 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

G02KAF

Note:  before using this routine, please read the Users' Note for your implementation to check the interpretation of bold italicised terms and other implementation-dependent details.

+ Contents

    1  Purpose
    7  Accuracy

1  Purpose

G02KAF calculates a ridge regression, optimizing the ridge parameter according to one of four prediction error criteria.

2  Specification

SUBROUTINE G02KAF ( N, M, X, LDX, ISX, IP, TAU, Y, H, OPT, NITER, TOL, NEP, ORIG, B, VIF, RES, RSS, DF, OPTLOO, PERR, IFAIL)
INTEGER  N, M, LDX, ISX(M), IP, OPT, NITER, ORIG, DF, OPTLOO, IFAIL
REAL (KIND=nag_wp)  X(LDX,M), TAU, Y(N), H, TOL, NEP, B(IP+1), VIF(IP), RES(N), RSS, PERR(5)

3  Description

A linear model has the form:
y = c+Xβ+ε ,
where
Let X~ be the mean-centred X and y~ the mean-centred y. Furthermore, X~ is scaled such that the diagonal elements of the cross product matrix X~TX~ are one. The linear model now takes the form:
y~ = X~ β~ + ε .
Ridge regression estimates the parameters β~ in a penalised least squares sense by finding the b~ that minimizes
X~ b~ - y~ 2 + h b~ 2 , h>0 ,
where · denotes the 2-norm and h is a scalar regularization or ridge parameter. For a given value of h, the parameter estimates b~ are found by evaluating
b~ = X~T X~+hI -1 X~T y~ .
Note that if h=0 the ridge regression solution is equivalent to the ordinary least squares solution.
Rather than calculate the inverse of (X~TX~+hI) directly, G02KAF uses the singular value decomposition (SVD) of X~. After decomposing X~ into UDVT where U and V are orthogonal matrices and D is a diagonal matrix, the parameter estimates become
b~ = V DTD+hI -1 D UT y~ .
A consequence of introducing the ridge parameter is that the effective number of parameters, γ, in the model is given by the sum of diagonal elements of
DT D DT D+hI-1 ,
see Moody (1992) for details.
Any multi-collinearity in the design matrix X may be highlighted by calculating the variance inflation factors for the fitted model. The jth variance inflation factor, vj, is a scaled version of the multiple correlation coefficient between independent variable j and the other independent variables, Rj, and is given by
vj = 1 1-Rj , j=1,2,,m .
The m variance inflation factors are calculated as the diagonal elements of the matrix:
X~T X~+hI -1 X~T X~ X~T X~+hI -1 ,
which, using the SVD of X~, is equivalent to the diagonal elements of the matrix:
V DTD+hI -1 DT D DTD+hI -1 VT .
Although parameter estimates b~ are calculated by using X~, it is usual to report the parameter estimates b associated with X. These are calculated from b~, and the means and scalings of X. Optionally, either b~ or b may be calculated.
The method can adopt one of four criteria to minimize while calculating a suitable value for h:
(a) Generalized cross-validation (GCV):
ns n-γ 2 ;
(b) Unbiased estimate of variance (UEV):
s n-γ ;
(c) Future prediction error (FPE):
1n s+ 2γs n-γ ;
(d) Bayesian information criterion (BIC):
1n s + lognγs n-γ ;
where s is the sum of squares of residuals. However, the function returns all four of the above prediction errors regardless of the one selected to minimize the ridge parameter, h. Furthermore, the function will optionally return the leave-one-out cross-validation (LOOCV) prediction error.

4  References

Hastie T, Tibshirani R and Friedman J (2003) The Elements of Statistical Learning: Data Mining, Inference and Prediction Springer Series in Statistics
Moody J.E. (1992) The effective number of parameters: An analysis of generalisation and regularisation in nonlinear learning systems In: Neural Information Processing Systems (eds J E Moody, S J Hanson, and R P Lippmann) 4 847–854 Morgan Kaufmann San Mateo CA

5  Parameters

1:     N – INTEGERInput
On entry: n, the number of observations.
Constraint: N>1.
2:     M – INTEGERInput
On entry: the number of independent variables available in the data matrix X.
Constraint: MN.
3:     X(LDX,M) – REAL (KIND=nag_wp) arrayInput
On entry: the values of independent variables in the data matrix X.
4:     LDX – INTEGERInput
On entry: the first dimension of the array X as declared in the (sub)program from which G02KAF is called.
Constraint: LDXN.
5:     ISX(M) – INTEGER arrayInput
On entry: indicates which m independent variables are included in the model.
ISXj=1
The jth variable in X will be included in the model.
ISXj=0
Variable j is excluded.
Constraint: ISXj=0 ​ or ​ 1, for j=1,2,,M.
6:     IP – INTEGERInput
On entry: m, the number of independent variables in the model.
Constraints:
  • 1IPM;
  • Exactly IP elements of ISX must be equal to 1.
7:     TAU – REAL (KIND=nag_wp)Input
On entry: singular values less than TAU of the SVD of the data matrix X will be set equal to zero.
Suggested value: TAU=0.0 
Constraint: TAU0.0.
8:     Y(N) – REAL (KIND=nag_wp) arrayInput
On entry: the n values of the dependent variable y.
9:     H – REAL (KIND=nag_wp)Input/Output
On entry: an initial value for the ridge regression parameter h; used as a starting point for the optimization.
Constraint: H>0.0.
On exit: H is the optimized value of the ridge regression parameter h.
10:   OPT – INTEGERInput
On entry: the measure of prediction error used to optimize the ridge regression parameter h. The value of OPT must be set equal to one of:
OPT=1
Generalized cross-validation (GCV);
OPT=2
Unbiased estimate of variance (UEV)
OPT=3
Future prediction error (FPE)
OPT=4
Bayesian information criteron (BIC).
Constraint: OPT=1, 2, 3 or 4.
11:   NITER – INTEGERInput/Output
On entry: the maximum number of iterations allowed to optimize the ridge regression parameter h.
Constraint: NITER1.
On exit: the number of iterations used to optimize the ridge regression parameter h within TOL.
12:   TOL – REAL (KIND=nag_wp)Input
On entry: iterations of the ridge regression parameter h will halt when consecutive values of h lie within TOL.
Constraint: TOL>0.0.
13:   NEP – REAL (KIND=nag_wp)Output
On exit: the number of effective parameters, γ, in the model.
14:   ORIG – INTEGERInput
On entry: if ORIG=1, the parameter estimates b are calculated for the original data; otherwise ORIG=2 and the parameter estimates b~ are calculated for the standardized data.
Constraint: ORIG=1 or 2.
15:   B(IP+1) – REAL (KIND=nag_wp) arrayOutput
On exit: contains the intercept and parameter estimates for the fitted ridge regression model in the order indicated by ISX. The first element of B contains the estimate for the intercept; Bj+1 contains the parameter estimate for the jth independent variable in the model, for j=1,2,,IP.
16:   VIF(IP) – REAL (KIND=nag_wp) arrayOutput
On exit: the variance inflation factors in the order indicated by ISX. For the jth independent variable in the model, VIFj is the value of vj, for j=1,2,,IP.
17:   RES(N) – REAL (KIND=nag_wp) arrayOutput
On exit: RESi is the value of the ith residual for the fitted ridge regression model, for i=1,2,,N.
18:   RSS – REAL (KIND=nag_wp)Output
On exit: the sum of squares of residual values.
19:   DF – INTEGEROutput
On exit: the degrees of freedom for the residual sum of squares RSS.
20:   OPTLOO – INTEGERInput
On entry: if OPTLOO=2, the leave-one-out cross-validation estimate of prediction error is calculated; otherwise no such estimate is calculated and OPTLOO=1.
Constraint: OPTLOO=1 or 2.
21:   PERR(5) – REAL (KIND=nag_wp) arrayOutput
On exit: the first four elements contain, in this order, the measures of prediction error: GCV, UEV, FPE and BIC.
If OPTLOO=2, PERR5 is the LOOCV estimate of prediction error; otherwise PERR5 is not referenced.
22:   IFAIL – INTEGERInput/Output
On entry: IFAIL must be set to 0, -1​ or ​1. If you are unfamiliar with this parameter you should refer to Section 3.3 in the Essential Introduction 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 parameter, 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
Maximum number of iterations used.
IFAIL=1
On entry,N1;
orTAU<0.0;
orOPT1, 2, 3 or 4;
orH0.0;
orOPTLOO1 or 2;
orTOL0.0;
orNITER<1;
orORIG1 or 2
IFAIL=2
On entry,M>N;
orLDX<N;
orIP<1 or IP>M;
orAn element of ISX0 or 1;
orIP does not equal the sum of elements in ISX.
IFAIL=3
SVD failed to converge.
IFAIL=4
Internal error. Check all array sizes and calls to G02KAF. Please contact NAG.

7  Accuracy

Not applicable.

8  Further Comments

G02KAF allocates internally max 5 × N-1 , 2×IP×IP +N+3 × IP+N  elements of double precision storage.

9  Example

This example reads in data from an experiment to model body fat, and a ridge regression is calculated that optimizes GCV prediction error.

9.1  Program Text

Program Text (g02kafe.f90)

9.2  Program Data

Program Data (g02kafe.d)

9.3  Program Results

Program Results (g02kafe.r)


G02KAF (PDF version)
G02 Chapter Contents
G02 Chapter Introduction
NAG Library Manual

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