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

NAG Library Routine Document

G02MAF

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

G02MAF performs Least Angle Regression (LARS), forward stagewise linear regression or Least Absolute Shrinkage and Selection Operator (LASSO).

2  Specification

SUBROUTINE G02MAF ( MTYPE, PRED, PREY, N, M, D, LDD, ISX, LISX, Y, MNSTEP, IP, NSTEP, B, LDB, FITSUM, ROPT, LROPT, IFAIL)
INTEGER  MTYPE, PRED, PREY, N, M, LDD, ISX(LISX), LISX, MNSTEP, IP, NSTEP, LDB, LROPT, IFAIL
REAL (KIND=nag_wp)  D(LDD,*), Y(N), B(LDB,*), FITSUM(6,MNSTEP+1), ROPT(LROPT)

3  Description

G02MAF implements the LARS algorithm of Efron et al. (2004) as well as the modifications needed to perform forward stagewise linear regression and fit LASSO and positive LASSO models.
Given a vector of n observed values, y = yi : i=1,2,,n  and an n×p design matrix X, where the jth column of X, denoted xj, is a vector of length n representing the jth independent variable xj, standardized such that i=1 n xij =0 , and i=1 n xij2 =1  and a set of model parameters β to be estimated from the observed values, the LARS algorithm can be summarised as:
1. Set k=1 and all coefficients to zero, that is β=0.
2. Find the variable most correlated with y, say xj1. Add xj1 to the ‘most correlated’ set A. If p=1 go to 8.
3. Take the largest possible step in the direction of xj1 (i.e., increase the magnitude of βj1) until some other variable, say xj2, has the same correlation with the current residual, y-xj1βj1.
4. Increment k and add xjk to A.
5. If A=p go to 8.
6. Proceed in the ‘least angle direction’, that is, the direction which is equiangular between all variables in A, altering the magnitude of the parameter estimates of those variables in A, until the kth variable, xjk, has the same correlation with the current residual.
7. Go to 4.
8. Let K=k.
As well as being a model selection process in its own right, with a small number of modifications the LARS algorithm can be used to fit the LASSO model of Tibshirani (1996), a positive LASSO model, where the independent variables enter the model in their defined direction (i.e., βkj0), forward stagewise linear regression (Hastie et al. (2001)) and forward selection (Weisberg (1985)). Details of the required modifications in each of these cases are given in Efron et al. (2004).
The LASSO model of Tibshirani (1996) is given by
minimize α , βk p y- α- XT βk 2   subject to   βk1 tk  
for all values of tk, where α=y-=n-1 i=1 n yi. The positive LASSO model is the same as the standard LASSO model, given above, with the added constraint that
βkj 0 ,   j=1,2,,p .  
Unlike the standard LARS algorithm, when fitting either of the LASSO models, variables can be dropped as well as added to the set A. Therefore the total number of steps K is no longer bounded by p.
Forward stagewise linear regression is an iterative procedure of the form:
1. Initialize k=1 and the vector of residuals r0=y-α.
2. For each j=1,2,,p calculate cj=xjTrk-1. The value cj is therefore proportional to the correlation between the jth independent variable and the vector of previous residual values, rk.
3. Calculate jk = argmax j cj , the value of j with the largest absolute value of cj.
4. If cjk<ε then go to 7.
5. Update the residual values, with
rk = rk-1 + δ ​ ​ signcjk xjk  
where δ is a small constant and signcjk=-1 when cjk<0 and 1 otherwise.
6. Increment k and go to 2.
7. Set K=k.
If the largest possible step were to be taken, that is δ=cjk then forward stagewise linear regression reverts to the standard forward selection method as implemented in G02EEF.
The LARS procedure results in K models, one for each step of the fitting process. In order to aid in choosing which is the most suitable Efron et al. (2004) introduced a Cp-type statistic given by
Cpk = y- XT βk 2 σ2 -n+2νk,  
where νk is the approximate degrees of freedom for the kth step and
σ2 = n-yTyνK .  
One way of choosing a model is therefore to take the one with the smallest value of Cpk.

4  References

Efron B, Hastie T, Johnstone I and Tibshirani R (2004) Least Angle Regression The Annals of Statistics (Volume 32) 2 407–499
Hastie T, Tibshirani R and Friedman J (2001) The Elements of Statistical Learning: Data Mining, Inference and Prediction Springer (New York)
Tibshirani R (1996) Regression Shrinkage and Selection via the Lasso Journal of the Royal Statistics Society, Series B (Methodological) (Volume 58) 1 267–288
Weisberg S (1985) Applied Linear Regression Wiley

5  Parameters

1:     MTYPE – INTEGERInput
On entry: indicates the type of model to fit.
MTYPE=1
LARS is performed.
MTYPE=2
Forward linear stagewise regression is performed.
MTYPE=3
LASSO model is fit.
MTYPE=4
A positive LASSO model is fit.
Constraint: MTYPE=1, 2, 3 or 4.
2:     PRED – INTEGERInput
On entry: indicates the type of data preprocessing to perform on the independent variables supplied in D to comply with the standardized form of the design matrix.
PRED=0
No preprocessing is performed.
PRED=1
Each of the independent variables, xj, for j=1,2,,p, are mean centered prior to fitting the model. The means of the independent variables, x-, are returned in B, with x-j=BjNSTEP+2, for j=1,2,,p.
PRED=2
Each independent variable is normalized, with the jth variable scaled by 1/xjTxj. The scaling factor used by variable j is returned in BjNSTEP+1.
PRED=3
As PRED=1 and 2, all of the independent variables are mean centered prior to being normalized.
Suggested value: PRED=3
Constraint: PRED=0, 1, 2 or 3.
3:     PREY – INTEGERInput
On entry: indicates the type of data preprocessing to perform on the dependent variable supplied in Y.
PREY=0
No preprocessing is performed, this is equivalent to setting α=0.
PREY=1
The dependent variable, y, is mean centered prior to fitting the model, so α=y-. Which is equivalent to fitting a non-penalized intercept to the model and the degrees of freedom etc. are adjusted accordingly.
The value of α used is returned in FITSUM1NSTEP+1.
Suggested value: PREY=1
Constraint: PREY=0 or 1.
4:     N – INTEGERInput
On entry: n, the number of observations.
Constraint: N1.
5:     M – INTEGERInput
On entry: m, the total number of independent variables.
Constraint: M1.
6:     DLDD* – REAL (KIND=nag_wp) arrayInput
Note: the second dimension of the array D must be at least M.
On entry: D, the data, which along with PRED and ISX, defines the design matrix X. The ith observation for the jth variable must be supplied in Dij, for i=1,2,,N and j=1,2,,M.
7:     LDD – INTEGERInput
On entry: the first dimension of the array D as declared in the (sub)program from which G02MAF is called.
Constraint: LDDN.
8:     ISXLISX – INTEGER arrayInput
On entry: indicates which independent variables from D will be included in the design matrix, X.
If LISX=0, all variables are included in the design matrix and ISX is not referenced.
If LISX=M, for j=1,2,,M when ISXj must be set as follows:
ISXj=1
To indicate that the jth variable, as supplied in D, is included in the design matrix;
ISXj=0
To indicated that the jth variable, as supplied in D, is not included in the design matrix;
and p= j=1 m ISXj.
Constraint: if LISX=M, ISXj=0 or 1 and at least one value of ISXj0, for j=1,2,,M.
9:     LISX – INTEGERInput
On entry: length of the ISX array.
Constraint: LISX=0 or M.
10:   YN – REAL (KIND=nag_wp) arrayInput
On entry: y, the observations on the dependent variable.
11:   MNSTEP – INTEGERInput
On entry: the maximum number of steps to carry out in the model fitting process.
If MTYPE=1, i.e., a LARS is being performed, the maximum number of steps the algorithm will take is minp,n if PREY=0, otherwise minp,n-1.
If MTYPE=2, i.e., a forward linear stagewise regression is being performed, the maximum number of steps the algorithm will take is likely to be several orders of magnitude more and is no longer bound by p or n.
If MTYPE=3 or 4, i.e., a LASSO or positive LASSO model is being fit, the maximum number of steps the algorithm will take lies somewhere between that of the LARS and forward linear stagewise regression, again it is no longer bound by p or n.
Constraint: MNSTEP1.
12:   IP – INTEGEROutput
On exit: p, number of parameter estimates.
If LISX=0, p=M, i.e., the number of variables in D.
Otherwise p is the number of nonzero values in ISX.
13:   NSTEP – INTEGEROutput
On exit: K, the actual number of steps carried out in the model fitting process.
14:   BLDB* – REAL (KIND=nag_wp) arrayOutput
Note: the second dimension of the array B must be at least MNSTEP+2.
On exit: β the parameter estimates, with Bjk=βkj, the parameter estimate for the jth variable, j=1,2,,p at the kth step of the model fitting process, k=1,2,,NSTEP.
By default, when PRED=2 or 3 the parameter estimates are rescaled prior to being returned. If the parameter estimates are required on the normalized scale, then this can be overridden via ROPT.
The values held in the remaining part of B depend on the type of preprocessing performed.
If PRED=0,
BjNSTEP+1 = 1 BjNSTEP+2 = 0  
If PRED=1,
BjNSTEP+1 = 1 BjNSTEP+2 = x-j  
If PRED=2,
BjNSTEP+1 = 1/ xjTxj BjNSTEP+2 = 0  
If PRED=3,
BjNSTEP+1 = 1/ xj-x-jT xj-x-j BjNSTEP+2 = x-j  
for j=1,2,,p.
15:   LDB – INTEGERInput
On entry: the first dimension of the array B as declared in the (sub)program from which G02MAF is called.
Constraint: LDBp, where p is the number of parameter estimates as described in IP.
16:   FITSUM6MNSTEP+1 – REAL (KIND=nag_wp) arrayOutput
On exit: summaries of the model fitting process. When k=1,2,,NSTEP,
FITSUM1k
βk1, the sum of the absolute values of the parameter estimates for the kth step of the modelling fitting process. If PRED=2 or 3, the scaled parameter estimates are used in the summation.
FITSUM2k
RSSk, the residual sums of squares for the kth step, where RSSk= y- XT βk 2 .
FITSUM3k
νk, approximate degrees of freedom for the kth step.
FITSUM4k
Cpk, a Cp-type statistic for the kth step, where Cpk=RSSkσ2-n+2νk.
FITSUM5k
C^k, correlation between the residual at step k-1 and the most correlated variable not yet in the active set A, where the residual at step 0 is y.
FITSUM6k
γ^k, the step size used at step k.
In addition
FITSUM1NSTEP+1
α, with α=y- if PREY=1 and 0 otherwise.
FITSUM2NSTEP+1
RSS0, the residual sums of squares for the null model, where RSS0=yTy when PREY=0 and RSS0=y-y-Ty-y- otherwise.
FITSUM3NSTEP+1
ν0, the degrees of freedom for the null model, where ν0=0 if PREY=0 and ν0=1 otherwise.
FITSUM4NSTEP+1
Cp0, a Cp-type statistic for the null model, where Cp0=RSS0σ2-n+2ν0.
FITSUM5NSTEP+1
σ2, where σ2=n-RSSKνK and K=NSTEP.
Although the Cp statistics described above are returned when IFAIL=112 they may not be meaningful due to the estimate σ2 not being based on the saturated model.
17:   ROPTLROPT – REAL (KIND=nag_wp) arrayInput
On entry: optional parameters to control various aspects of the LARS algorithm.
The default value will be used for ROPTi if LROPT<i, therefore setting LROPT=0 will use the default values for all optional arguments and ROPT need not be set. The default value will also be used if an invalid value is supplied for a particular argument, for example, setting ROPTi=-1 will use the default value for argument i.
ROPT1
The minimum step size that will be taken.
Default is 100×eps is used, where eps is the machine precision returned by X02AJF.
ROPT2
General tolerance, used amongst other things, for comparing correlations.
Default is ROPT1.
ROPT3
If set to 1, parameter estimates are rescaled before being returned.
If set to 0, no rescaling is performed.
This argument has no effect when PRED=0 or 1.
Default is for the parameter estimates to be rescaled.
ROPT4
If set to 1, it is assumed that the model contains an intercept during the model fitting process and when calculating the degrees of freedom.
If set to 0, no intercept is assumed.
This has no effect on the amount of preprocessing performed on Y.
Default is to treat the model as having an intercept when PREY=1 and as not having an intercept when PREY=0.
ROPT5
As implemented, the LARS algorithm can either work directly with y and X, or it can work with the cross-product matrices, XTy and XTX. In most cases it is more efficient to work with the cross-product matrices. This flag allows you direct control over which method is used, however, the default value will usually be the best choice.
If ROPT5=1, y and X are worked with directly.
If ROPT5=0, the cross-product matrices are used.
Default is 1 when p500 and n<p and 0 otherwise.
Constraints:
  • ROPT1>machine precision;
  • ROPT2>machine precision;
  • ROPT3=0 or 1;
  • ROPT4=0 or 1;
  • ROPT5=0 or 1.
18:   LROPT – INTEGERInput
On entry: length of the options array ROPT.
Constraint: 0LROPT5.
19:   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, because for this routine the values of the output parameters may be useful even if IFAIL0 on exit, the recommended value is -1. 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).
Note: G02MAF may return useful information for one or more of the following detected errors or warnings.
Errors or warnings detected by the routine:
IFAIL=11
On entry, MTYPE=value.
Constraint: MTYPE=1, 2, 3 or 4.
IFAIL=21
On entry, PRED=value.
Constraint: PRED=0, 1, 2 or 3.
IFAIL=31
On entry, PREY=value.
Constraint: PREY=0 or 1.
IFAIL=41
On entry, N=value.
Constraint: N1.
IFAIL=51
On entry, M=value.
Constraint: M1.
IFAIL=71
On entry, LDD=value and N=value.
Constraint: LDDN.
IFAIL=81
On entry, ISXvalue=value.
Constraint: ISXi=0 or 1 for all i.
IFAIL=82
On entry, all values of ISX are zero.
Constraint: at least one value of ISX must be nonzero.
IFAIL=91
On entry, LISX=value and M=value.
Constraint: LISX=0 or M.
IFAIL=111
On entry, MNSTEP=value.
Constraint: MNSTEP1.
IFAIL=112
Fitting process did not finish in MNSTEP steps. Try increasing the size of MNSTEP and supplying larger output arrays.
All output is returned as documented, up to step MNSTEP, however, σ and the Cp statistics may not be meaningful.
IFAIL=151
On entry, LDB=value and M=value.
Constraint: if LISX=0 then LDBM.
IFAIL=152
On entry, LDB=value and p=value.
Constraint: if LISX=M then LDBp.
IFAIL=161
σ2 is approximately zero and hence the Cp-type criterion cannot be calculated. All other output is returned as documented.
IFAIL=162
νK=n, therefore σ has been set to a large value. Output is returned as documented.
IFAIL=163
Degenerate model, no variables added and NSTEP=0. Output is returned as documented.
IFAIL=181
On entry, LROPT=value.
Constraint: 0LROPT5.
IFAIL=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 3.8 in the Essential Introduction for further information.
IFAIL=-399
Your licence key may have expired or may not have been installed correctly.
See Section 3.7 in the Essential Introduction for further information.
IFAIL=-999
Dynamic memory allocation failed.
See Section 3.6 in the Essential Introduction for further information.

7  Accuracy

Not applicable.

8  Parallelism and Performance

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

G02MAF returns the parameter estimates at various points along the solution path of a LARS, LASSO or stagewise regression analysis. If the solution is required at a different set of points, for example when performing cross-validation, then G02MCF can be used.
For datasets with a large number of observations, n, it may be impractical to store the full X matrix in memory in one go. In such instances the cross-product matrices XTy and XTX can be calculated, using for example, multiple calls to G02BUF and G02BZF, and G02MBF called to perform the analysis.
The amount of workspace used by G02MAF depends on whether the cross-product matrices are being used internally (as controlled by ROPT). If the cross-product matrices are being used then G02MAF internally allocates approximately 2p2+4p+maxnp elements of real storage compared to p2+3p+maxnp+2n+n×p elements when X and y are used directly. In both cases approximately 5p elements of integer storage are also used. If a forward linear stagewise analysis is performed than an additional p2+5p elements of real storage are required.

10  Example

This example performs a LARS on a simulated dataset with 20 observations and 6 independent variables.

10.1  Program Text

Program Text (g02mafe.f90)

10.2  Program Data

Program Data (g02mafe.d)

10.3  Program Results

Program Results (g02mafe.r)

This example plot shows the regression coefficients (βk) plotted against the scaled absolute sum of the parameter estimates (βk1).
GnuplotProduced by GNUPLOT 4.6 patchlevel 3 −1 0 1 2 3 4 0 20 40 60 80 100 120 140 160 180 200 220 Parameter Estimates (βkj) ||βk||1 Example Program Parameter estimates for a LARS model fitted to a simulated dataset gnuplot_plot_1 βk1 gnuplot_plot_2 βk2 gnuplot_plot_3 βk3 gnuplot_plot_4 βk4 gnuplot_plot_5 βk5 gnuplot_plot_6 βk6

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

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