NAG FL Interface
g02maf (lars)

Settings help

FL Name Style:


FL Specification Language:


1 Purpose

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

2 Specification

Fortran Interface
Subroutine g02maf ( mtype, pred, prey, n, m, d, ldd, isx, lisx, y, mnstep, ip, nstep, b, ldb, fitsum, ropt, lropt, ifail)
Integer, Intent (In) :: mtype, pred, prey, n, m, ldd, isx(lisx), lisx, mnstep, ldb, lropt
Integer, Intent (Inout) :: ifail
Integer, Intent (Out) :: ip, nstep
Real (Kind=nag_wp), Intent (In) :: d(ldd,*), y(n), ropt(lropt)
Real (Kind=nag_wp), Intent (Inout) :: b(ldb,*)
Real (Kind=nag_wp), Intent (Out) :: fitsum(6,mnstep+1)
C Header Interface
#include <nag.h>
void  g02maf_ (const Integer *mtype, const Integer *pred, const Integer *prey, const Integer *n, const Integer *m, const double d[], const Integer *ldd, const Integer isx[], const Integer *lisx, const double y[], const Integer *mnstep, Integer *ip, Integer *nstep, double b[], const Integer *ldb, double fitsum[], const double ropt[], const Integer *lropt, Integer *ifail)
The routine may be called by the names g02maf or nagf_correg_lars.

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. 1.Set k=1 and all coefficients to zero, that is β=0.
  2. 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. 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. 4.Increment k and add xjk to A.
  5. 5.If |A|=p go to 8.
  6. 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. 7.Go to 4.
  8. 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. 1.Initialize k=1 and the vector of residuals r0=y-α.
  2. 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. 3.Calculate jk = argmax j |cj| , the value of j with the largest absolute value of cj.
  4. 4.If |cjk|<ε then go to 7.
  5. 5.Update the residual values, with
    rk = rk-1 + δ ​ ​ sign(cjk) xjk  
    where δ is a small constant and sign(cjk)=−1 when cjk<0 and 1 otherwise.
  6. 6.Increment k and go to 2.
  7. 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
Cp(k) = 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 Cp(k).

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 Arguments

1: mtype Integer Input
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 Integer Input
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 centred prior to fitting the model. The means of the independent variables, x¯, are returned in b, with x¯j=b(j,nstep+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 b(j,nstep+1).
pred=3
As pred=1 and 2, all of the independent variables are mean centred prior to being normalized.
Suggested value: pred=3.
Constraint: pred=0, 1, 2 or 3.
3: prey Integer Input
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 centred 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 fitsum(1,nstep+1).
Suggested value: prey=1.
Constraint: prey=0 or 1.
4: n Integer Input
On entry: n, the number of observations.
Constraint: n1.
5: m Integer Input
On entry: m, the total number of independent variables.
Constraint: m1.
6: d(ldd,*) Real (Kind=nag_wp) array Input
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 d(i,j), for i=1,2,,n and j=1,2,,m.
7: ldd Integer Input
On entry: the first dimension of the array d as declared in the (sub)program from which g02maf is called.
Constraint: lddn.
8: isx(lisx) Integer array Input
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=misx(j) must be set as follows, for j=1,2,,m:
isx(j)=1
To indicate that the jth variable, as supplied in d, is included in the design matrix;
isx(j)=0
To indicated that the jth variable, as supplied in d, is not included in the design matrix;
and p= j=1 m isx(j).
Constraint: if lisx=m, isx(j)=0 or 1 and at least one value of isx(j)0, for j=1,2,,m.
9: lisx Integer Input
On entry: length of the isx array.
Constraint: lisx=0 or m.
10: y(n) Real (Kind=nag_wp) array Input
On entry: y, the observations on the dependent variable.
11: mnstep Integer Input
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 min(p,n) if prey=0, otherwise min(p,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 Integer Output
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 Integer Output
On exit: K, the actual number of steps carried out in the model fitting process.
14: b(ldb,*) Real (Kind=nag_wp) array Output
Note: the second dimension of the array b must be at least mnstep+2.
On exit: β the parameter estimates, with b(j,k)=β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,
b(j,nstep+1) = 1 b(j,nstep+2) = 0
If pred=1,
b(j,nstep+1) = 1 b(j,nstep+2) = x¯j
If pred=2,
b(j,nstep+1) = 1/ xjTxj b(j,nstep+2) = 0
If pred=3,
b(j,nstep+1) = 1/ (xj-x¯j) T (xj-x¯j) b(j,nstep+2) = x¯j
for j=1,2,,p.
15: ldb Integer Input
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: fitsum(6,mnstep+1) Real (Kind=nag_wp) array Output
On exit: summaries of the model fitting process. When k=1,2,,nstep,
fitsum(1,k)
β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.
fitsum(2,k)
RSSk, the residual sums of squares for the kth step, where RSSk= y-XTβk 2 .
fitsum(3,k)
νk, approximate degrees of freedom for the kth step.
fitsum(4,k)
Cp(k), a Cp-type statistic for the kth step, where Cp(k)=RSSkσ2-n+2νk.
fitsum(5,k)
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.
fitsum(6,k)
γ^k, the step size used at step k.
In addition
fitsum(1,nstep+1)
α, with α=y¯ if prey=1 and 0 otherwise.
fitsum(2,nstep+1)
RSS0, the residual sums of squares for the null model, where RSS0=yTy when prey=0 and RSS0=(y-y¯)T(y-y¯) otherwise.
fitsum(3,nstep+1)
ν0, the degrees of freedom for the null model, where ν0=0 if prey=0 and ν0=1 otherwise.
fitsum(4,nstep+1)
Cp(0), a Cp-type statistic for the null model, where Cp(0)=RSS0σ2-n+2ν0.
fitsum(5,nstep+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: ropt(lropt) Real (Kind=nag_wp) array Input
On entry: optional parameters to control various aspects of the LARS algorithm.
The default value will be used for ropt(i) if lropt<i, therefore, setting lropt=0 will use the default values for all optional parameters 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 ropt(i)=−1 will use the default value for argument i.
ropt(1)
The minimum step size that will be taken.
Default is 100×eps, where eps is the machine precision returned by x02ajf.
ropt(2)
General tolerance, used amongst other things, for comparing correlations.
Default is ropt(1).
ropt(3)
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.
ropt(4)
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.
ropt(5)
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 ropt(5)=1, y and X are worked with directly.
If ropt(5)=0, the cross-product matrices are used.
Default is 1 when p500 and n<p and 0 otherwise.
Constraints:
  • ropt(1)>machine precision;
  • ropt(2)>machine precision;
  • ropt(3)=0 or 1;
  • ropt(4)=0 or 1;
  • ropt(5)=0 or 1.
18: lropt Integer Input
On entry: length of the options array ropt.
Constraint: 0lropt5.
19: 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 g02maf may return useful information.
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, isx(value)=value.
Constraint: isx(i)=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 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

Not applicable.

8 Parallelism and Performance

Background information to multithreading can be found in the Multithreading documentation.
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+max(np) elements of real storage compared to p2+3p+max(np)+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