Smoothing spline explained
Smoothing splines are function estimates,
, obtained from a set of noisy observations
of the target
, in order to balance a measure of
goodness of fit of
to
with a derivative based measure of the smoothness of
. They provide a means for smoothing noisy
data. The most familiar example is the cubic smoothing spline, but there are many other possibilities, including for the case where
is a vector quantity.
Cubic spline definition
Let
be a set of observations, modeled by the relation
where the
are independent, zero mean random variables. The cubic smoothing spline estimate
of the function
is defined to be the unique minimizer, in the Sobolev space
on a compact interval, of
[1] [2]
\{Yi-\hat
+λ\int\hat{f}\prime\prime(x)2dx.
Remarks:
is a smoothing parameter, controlling the trade-off between fidelity to the data and roughness of the function estimate. This is often estimated by generalized cross-validation,
[3] or by restricted marginal likelihood (REML) which exploits the link between spline smoothing and Bayesian estimation (the smoothing penalty can be viewed as being induced by a prior on the
).
[4] - The integral is often evaluated over the whole real line although it is also possible to restrict the range to that of
.
(no smoothing), the smoothing spline converges to the
interpolating spline.
(infinite smoothing), the roughness penalty becomes paramount and the estimate converges to a
linear least squares estimate.
- The roughness penalty based on the second derivative is the most common in modern statistics literature, although the method can easily be adapted to penalties based on other derivatives.
- In early literature, with equally-spaced ordered
, second or third-order differences were used in the penalty, rather than derivatives.
[5] - The penalized sum of squares smoothing objective can be replaced by a penalized likelihood objective in which the sum of squares terms is replaced by another log-likelihood based measure of fidelity to the data.[1] The sum of squares term corresponds to penalized likelihood with a Gaussian assumption on the
.
Derivation of the cubic smoothing spline
It is useful to think of fitting a smoothing spline in two steps:
- First, derive the values
.
- From these values, derive
for all
x.
Now, treat the second step first.
Given the vector
\hat{m}=(\hatf(x1),\ldots,\hat
of fitted values, the sum-of-squares part of the spline criterion is fixed. It remains only to minimize
, and the minimizer is a natural cubic
spline that interpolates the points
. This interpolating spline is a linear operator, and can be written in the form
where
are a set of spline basis functions. As a result, the roughness penalty has the form
\int\hatf''(x)2dx=\hat{m}TA\hat{m}.
where the elements of
A are
. The basis functions, and hence the matrix
A, depend on the configuration of the predictor variables
, but not on the responses
or
.
A is an n×n matrix given by
.
Δ is an (n-2)×n matrix of second differences with elements:
,
,
W is an (n-2)×(n-2) symmetric tri-diagonal matrix with elements:
,
and
, the distances between successive knots (or x values).
Now back to the first step. The penalized sum-of-squares can be written as
\{Y-\hatm\}T\{Y-\hatm\}+λ\hat{m}TA\hatm,
where
.
Minimizing over
by differentiating against
. This results in:
[6] and
De Boor's approach
De Boor's approach exploits the same idea, of finding a balance between having a smooth curve and being close to the given data.[7]
\left(
| Yi-\hatf\left(xi\right) |
\deltai |
\right)2+\left(1-p\right)\int\left(\hatf\left\left(x\right)\right)2dx
where
is a parameter called smooth factor and belongs to the interval
, and
are the quantities controlling the extent of smoothing (they represent the weight
of each point
). In practice, since
cubic splines are mostly used,
is usually
. The solution for
was proposed by
Christian Reinsch in 1967. For
, when
approaches
,
converges to the "natural" spline interpolant to the given data. As
approaches
,
converges to a straight line (the smoothest curve). Since finding a suitable value of
is a task of trial and error, a redundant constant
was introduced for convenience.
[8]
is used to numerically determine the value of
so that the function
meets the following condition:
\left(
| Yi-\hatf\left(xi\right) |
\deltai |
\right)2\leS
The algorithm described by de Boor starts with
and increases
until the condition is met. If
is an estimation of the standard deviation for
, the constant
is recommended to be chosen in the interval
\left[n-\sqrt{2n},n+\sqrt{2n}\right]
. Having
means the solution is the "natural" spline interpolant. Increasing
means we obtain a smoother curve by getting farther from the given data.
Multidimensional splines
There are two main classes of method for generalizing from smoothing with respect to a scalar
to smoothing with respect to a vector
. The first approach simply generalizes the spline smoothing penalty to the multidimensional setting. For example, if trying to estimate
we might use the
Thin plate spline penalty and find the
minimizing
\{yi-\hatf(xi,z
+λ\int\left[\left(
\right)2+2\left(
| \partial2\hatf |
\partialx\partialz |
\right)2+\left(
\right)2\right]rm{d}xrm{d}z.
The thin plate spline approach can be generalized to smoothing with respect to more than two dimensions and to other orders of differentiation in the penalty.
[1] As the dimension increases there are some restrictions on the smallest order of differential that can be used,
[1] but actually Duchon's original paper,
[9] gives slightly more complicated penalties that can avoid this restriction.
The thin plate splines are isotropic, meaning that if we rotate the
co-ordinate system the estimate will not change, but also that we are assuming that the same level of smoothing is appropriate in all directions. This is often considered reasonable when smoothing with respect to spatial location, but in many other cases isotropy is not an appropriate assumption and can lead to sensitivity to apparently arbitrary choices of measurement units. For example, if smoothing with respect to distance and time an isotropic smoother will give different results if distance is measure in metres and time in seconds, to what will occur if we change the units to centimetres and hours.
The second class of generalizations to multi-dimensional smoothing deals directly with this scale invariance issue using tensor product spline constructions.[10] [11] [12] Such splines have smoothing penalties with multiple smoothing parameters, which is the price that must be paid for not assuming that the same degree of smoothness is appropriate in all directions.
Related methods
See also: Curve fitting. Smoothing splines are related to, but distinct from:
- Regression splines. In this method, the data is fitted to a set of spline basis functions with a reduced set of knots, typically by least squares. No roughness penalty is used. (See also multivariate adaptive regression splines.)
- Penalized splines. This combines the reduced knots of regression splines, with the roughness penalty of smoothing splines.[13] [14]
- Thin plate splines and Elastic maps method for manifold learning. This method combines the least squares penalty for approximation error with the bending and stretching penalty of the approximating manifold and uses the coarse discretization of the optimization problem.
Source code
Source code for spline smoothing can be found in the examples from Carl de Boor's book A Practical Guide to Splines. The examples are in the Fortran programming language. The updated sources are available also on Carl de Boor's official site http://pages.cs.wisc.edu/~deboor/.
Further reading
- Wahba, G. (1990). Spline Models for Observational Data. SIAM, Philadelphia.
- Green, P. J. and Silverman, B. W. (1994). Nonparametric Regression and Generalized Linear Models. CRC Press.
- De Boor, C. (2001). A Practical Guide to Splines (Revised Edition). Springer.
Notes and References
- Book: Green, P. J.. Nonparametric Regression and Generalized Linear Models: A roughness penalty approach. Silverman. B.W.. 1994. Chapman and Hall.
- Book: Hastie, T. J.. Generalized Additive Models. Tibshirani, R. J. . 1990. Chapman and Hall. 978-0-412-34390-2.
- P.. Craven. G.. Wahba. Smoothing noisy data with spline functions. Numerische Mathematik. 1979. 31. 4. 377–403. 10.1007/bf01404567.
- G.S.. Kimeldorf. G.. Wahba. A Correspondence between Bayesian Estimation on Stochastic Processes and Smoothing by Splines. The Annals of Mathematical Statistics. 1970. 41. 2. 495–502. 10.1214/aoms/1177697089. free.
- E.T.. Whittaker. On a new method of graduation. Proceedings of the Edinburgh Mathematical Society. 1922. 41. 63–75.
- Web site: Rodriguez. German. Smoothing and Non-Parametric Regression. 28 April 2024. 2.3.1 Computation. 12. English. Spring 2001.
- Book: De Boor, C.. A Practical Guide to Splines (Revised Edition). 2001. Springer. 207–214. 978-0-387-90356-9.
- Smoothing by Spline Functions. Reinsch, Christian H. Christian Reinsch. 10.1007/BF02162161. 10. 3. Numerische Mathematik. 177–183. 1967.
- J. Duchon, 1976, Splines minimizing rotation invariant semi-norms in Sobolev spaces. pp 85–100, In: Constructive Theory of Functions of Several Variables, Oberwolfach 1976, W. Schempp and K. Zeller, eds., Lecture Notes in Math., Vol. 571, Springer, Berlin, 1977
- Book: Wahba, Grace. Spline Models for Observational Data. SIAM.
- Book: Gu, Chong. 2013. Smoothing Spline ANOVA Models (2nd ed.). Springer.
- Book: Wood, S. N.. Generalized Additive Models: An Introduction with R (2nd ed). Chapman & Hall/CRC. 2017. 978-1-58488-474-3.
- Flexible smoothing with B-splines and penalties. Eilers, P.H.C. and Marx B.. 11. 2. Statistical Science. 89–121. 1996.
- Book: Ruppert, David . Semiparametric Regression. Wand, M. P. . Carroll, R. J.. Cambridge University Press. 2003. 978-0-521-78050-6.