G10ACF (PDF version)
G10 Chapter Contents
G10 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

G10ACF

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

G10ACF estimates the values of the smoothing parameter and fits a cubic smoothing spline to a set of data.

2  Specification

SUBROUTINE G10ACF ( METHOD, WEIGHT, N, X, Y, WT, YHAT, C, LDC, RSS, DF, RES, H, CRIT, RHO, U, TOL, MAXCAL, WK, IFAIL)
INTEGER  N, LDC, MAXCAL, IFAIL
REAL (KIND=nag_wp)  X(N), Y(N), WT(*), YHAT(N), C(LDC,3), RSS, DF, RES(N), H(N), CRIT, RHO, U, TOL, WK(7*(N+2))
CHARACTER(1)  METHOD, WEIGHT

3  Description

For a set of n observations xi,yi, for i=1,2,,n, the spline provides a flexible smooth function for situations in which a simple polynomial or nonlinear regression model is not suitable.
Cubic smoothing splines arise as the unique real-valued solution function f, with absolutely continuous first derivative and squared-integrable second derivative, which minimizes
i=1nwiyi-fxi2+ρ -fx2dx,
where wi is the (optional) weight for the ith observation and ρ is the smoothing parameter. This criterion consists of two parts: the first measures the fit of the curve and the second the smoothness of the curve. The value of the smoothing parameter ρ weights these two aspects; larger values of ρ give a smoother fitted curve but, in general, a poorer fit. For details of how the cubic spline can be fitted see Hutchinson and de Hoog (1985) and Reinsch (1967).
The fitted values, y^ = y^1,y^2,,y^nT , and weighted residuals, ri, can be written as:
y^=Hy  and  ri=wiyi-y^i
for a matrix H. The residual degrees of freedom for the spline is traceI-H and the diagonal elements of H are the leverages.
The parameter ρ can be estimated in a number of ways.
(i) The degrees of freedom for the spline can be specified, i.e., find ρ such that traceH=ν0 for given ν0.
(ii) Minimize the cross-validation (CV), i.e., find ρ such that the CV is minimized, where
CV=1i=1nwi i=1n ri1-hii 2.
(iii) Minimize the generalized cross-validation (GCV), i.e., find ρ such that the GCV is minimized, where
GCV=n2i=1nwi i=1nri2 i=1n1-hii 2 .
G10ACF requires the xi to be strictly increasing. If two or more observations have the same xi value then they should be replaced by a single observation with yi equal to the (weighted) mean of the y values and weight, wi, equal to the sum of the weights. This operation can be performed by G10ZAF.
The algorithm is based on Hutchinson (1986). C05AZF is used to solve for ρ given ν0 and the method of E04ABF/E04ABA is used to minimize the GCV or CV.

4  References

Hastie T J and Tibshirani R J (1990) Generalized Additive Models Chapman and Hall
Hutchinson M F (1986) Algorithm 642: A fast procedure for calculating minimum cross-validation cubic smoothing splines ACM Trans. Math. Software 12 150–153
Hutchinson M F and de Hoog F R (1985) Smoothing noisy data with spline functions Numer. Math. 47 99–106
Reinsch C H (1967) Smoothing by spline functions Numer. Math. 10 177–183

5  Parameters

1:     METHOD – CHARACTER(1)Input
On entry: indicates whether the smoothing parameter is to be found by minimization of the CV or GCV functions, or by finding the smoothing parameter corresponding to a specified degrees of freedom value.
METHOD='C'
Cross-validation is used.
METHOD='D'
The degrees of freedom are specified.
METHOD='G'
Generalized cross-validation is used.
Constraint: METHOD='C', 'D' or 'G'.
2:     WEIGHT – CHARACTER(1)Input
On entry: indicates whether user-defined weights are to be used.
WEIGHT='W'
User-defined weights should be supplied in WT.
WEIGHT='U'
The data is treated as unweighted.
Constraint: WEIGHT='W' or 'U'.
3:     N – INTEGERInput
On entry: n, the number of observations.
Constraint: N3.
4:     X(N) – REAL (KIND=nag_wp) arrayInput
On entry: the distinct and ordered values xi, for i=1,2,,n.
Constraint: Xi<Xi+1, for i=1,2,,n-1.
5:     Y(N) – REAL (KIND=nag_wp) arrayInput
On entry: the values yi, for i=1,2,,n.
6:     WT(*) – REAL (KIND=nag_wp) arrayInput
Note: the dimension of the array WT must be at least 1 if WEIGHT='U' and at least N if WEIGHT='W'.
On entry: if WEIGHT='W', WT must contain the n weights.
If WEIGHT='U', WT is not referenced and unit weights are assumed.
Constraint: if WEIGHT='W', WTi>0.0, for i=1,2,,n.
7:     YHAT(N) – REAL (KIND=nag_wp) arrayOutput
On exit: the fitted values, y^i, for i=1,2,,n.
8:     C(LDC,3) – REAL (KIND=nag_wp) arrayOutput
On exit: the spline coefficients. More precisely, the value of the spline approximation at t is given by Ci3×d+Ci2×d+Ci1×d+y^i, where xit<xi+1 and d=t-xi.
9:     LDC – INTEGERInput
On entry: the first dimension of the array C as declared in the (sub)program from which G10ACF is called.
Constraint: LDCN-1.
10:   RSS – REAL (KIND=nag_wp)Output
On exit: the (weighted) residual sum of squares.
11:   DF – REAL (KIND=nag_wp)Output
On exit: the residual degrees of freedom. If METHOD='D' this will be n-CRIT to the required accuracy.
12:   RES(N) – REAL (KIND=nag_wp) arrayOutput
On exit: the (weighted) residuals, ri, for i=1,2,,n.
13:   H(N) – REAL (KIND=nag_wp) arrayOutput
On exit: the leverages, hii, for i=1,2,,n.
14:   CRIT – REAL (KIND=nag_wp)Input/Output
On entry: if METHOD='D', the required degrees of freedom for the spline.
If METHOD='C' or 'G', CRIT need not be set.
Constraint: 2.0<CRITN.
On exit: if METHOD='C', the value of the cross-validation, or if METHOD='G', the value of the generalized cross-validation function, evaluated at the value of ρ returned in RHO.
15:   RHO – REAL (KIND=nag_wp)Output
On exit: the smoothing parameter, ρ.
16:   U – REAL (KIND=nag_wp)Input
On entry: the upper bound on the smoothing parameter. If UTOL, U=1000.0 will be used instead. See Section 8 for details on how this parameter is used.
17:   TOL – REAL (KIND=nag_wp)Input
On entry: the accuracy to which the smoothing parameter RHO is required. TOL should preferably be not much less than ε, where ε is the machine precision. If TOL<ε, TOL=ε will be used instead.
18:   MAXCAL – INTEGERInput
On entry: the maximum number of spline evaluations to be used in finding the value of ρ. If MAXCAL<3, MAXCAL=100 will be used instead.
19:   WK(7×N+2) – REAL (KIND=nag_wp) arrayWorkspace
20:   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
On entry,N<3,
orLDC<N-1,
orMETHOD'C', 'G' or 'D',
orWEIGHT'W' or 'U',
orMETHOD='D' and CRIT2.0,
orMETHOD='D' and CRIT>N.
IFAIL=2
On entry,WEIGHT='W' and at least one element of WT0.0.
IFAIL=3
On entry,XiXi+1, for some i, i=1,2,,n-1.
IFAIL=4
METHOD='D' and the required value of ρ for specified degrees of freedom>U. Try a larger value of U; see Section 8.
IFAIL=5
METHOD='D' and the accuracy given by TOL cannot be achieved. Try increasing the value of TOL.
IFAIL=6
A solution to the accuracy given by TOL has not been achieved in MAXCAL iterations. Try increasing the value of TOL and/or MAXCAL.
IFAIL=7
METHOD='C' or 'G' and the optimal value of ρ>U. Try a larger value of U; see Section 8.

7  Accuracy

When minimizing the cross-validation or generalized cross-validation, the error in the estimate of ρ should be within ±3TOL×RHO+TOL. When finding ρ for a fixed number of degrees of freedom the error in the estimate of ρ should be within ±2×TOL×max1,RHO.
Given the value of ρ, the accuracy of the fitted spline depends on the value of ρ and the position of the x values. The values of xi-xi-1 and wi are scaled and ρ is transformed to avoid underflow and overflow problems.

8  Further Comments

The time to fit the spline for a given value of ρ is of order n.
When finding the value of ρ that gives the required degrees of freedom, the algorithm examines the interval 0.0 to U. For small degrees of freedom the value of ρ can be large, as in the theoretical case of two degrees of freedom when the spline reduces to a straight line and ρ is infinite. If the CV or GCV is to be minimized then the algorithm searches for the minimum value in the interval 0.0 to U. If the function is decreasing in that range then the boundary value of U will be returned. In either case, the larger the value of U the more likely is the interval to contain the required solution, but the process will be less efficient.
Regression splines with a small <n number of knots can be fitted by E02BAF and E02BEF.

9  Example

This example uses the data given by Hastie and Tibshirani (1990), which consists of the age, xi, and C-peptide concentration (pmol/ml), yi, from a study of the factors affecting insulin-dependent diabetes mellitus in children. The data is input, reduced to a strictly ordered set by G10ZAF and a spline with 5 degrees of freedom is fitted by G10ACF. The fitted values and residuals are printed.

9.1  Program Text

Program Text (g10acfe.f90)

9.2  Program Data

Program Data (g10acfe.d)

9.3  Program Results

Program Results (g10acfe.r)


G10ACF (PDF version)
G10 Chapter Contents
G10 Chapter Introduction
NAG Library Manual

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