Version: | 4.6.0 |
Priority: | base |
Imports: | graphics, stats |
Title: | Regression Spline Functions and Classes |
Author: | Douglas M. Bates <bates@stat.wisc.edu> and William N. Venables <Bill.Venables@csiro.au> |
Maintainer: | R Core Team <do-use-Contact-address@r-project.org> |
Contact: | R-help mailing list <r-help@r-project.org> |
Description: | Regression spline functions and classes. |
License: | Part of R 4.6.0 |
Suggests: | Matrix, methods |
NeedsCompilation: | yes |
Built: | R 4.6.0; x86_64-apple-darwin22.2.0; 2025-03-20 15:28:53 UTC; unix |
Regression Spline Functions and Classes
Description
Regression spline functions and classes.
Details
This package provides functions for working with regression
splines using the B-spline basis, bs
, and the
natural cubic spline basis, ns
.
For a complete list of functions, use library(help = "splines")
.
Author(s)
Douglas M. Bates bates@stat.wisc.edu and William N. Venables Bill.Venables@csiro.au
Maintainer: R Core Team R-core@r-project.org
Coerce an Object to a Vector
Description
This is a generic function. Methods for this function coerce objects of given classes to vectors.
Usage
asVector(object)
Arguments
object |
An object. |
Details
Methods for vector coercion in new classes must be created for the
asVector
generic instead of as.vector
. The
as.vector
function is internal and not easily extended.
Currently the only class with an asVector
method is the
xyVector
class.
Value
a vector
Author(s)
Douglas Bates and Bill Venables
See Also
Examples
require(stats)
ispl <- interpSpline( weight ~ height, women )
pred <- predict(ispl)
class(pred)
utils::str(pred)
asVector(pred)
Monotone Inverse Spline
Description
Create a monotone inverse of a monotone natural spline.
Usage
backSpline(object)
Arguments
object |
an object that inherits from class |
Value
An object of class polySpline
that contains the piecewise
polynomial representation of a function that has the appropriate
values and derivatives at the knot positions to be an inverse of the
spline represented by object
. Technically this object is not a
spline because the second derivative is not constrained to be
continuous at the knot positions. However, it is often a much better
approximation to the inverse than fitting an interpolation spline to
the y/x pairs.
Author(s)
Douglas Bates and Bill Venables
See Also
Examples
require(graphics)
ispl <- interpSpline( women$height, women$weight )
bspl <- backSpline( ispl )
plot( bspl ) # plots over the range of the knots
points( women$weight, women$height )
B-Spline Basis for Polynomial Splines
Description
Generate the B-spline basis matrix for a polynomial spline.
Usage
bs(x, df = NULL, knots = NULL, degree = 3, intercept = FALSE,
Boundary.knots = range(x), warn.outside = TRUE)
Arguments
x |
the predictor variable. Missing values are allowed. |
df |
degrees of freedom; one can specify |
knots |
the internal breakpoints that define the
spline. The default is |
degree |
degree of the piecewise polynomial—default is |
intercept |
if |
Boundary.knots |
boundary points at which to anchor the B-spline
basis (default the range of the non- |
warn.outside |
|
Details
bs
is based on the function splineDesign
.
It generates a basis matrix for
representing the family of piecewise polynomials with the specified
interior knots and degree, evaluated at the values of x
. A
primary use is in modeling formulas to directly specify a piecewise
polynomial term in a model.
When Boundary.knots
are set inside range(x)
,
bs()
now uses a ‘pivot’ inside the respective boundary
knot which is important for derivative evaluation. In R versions
\le
3.2.2, the boundary knot itself had been used as
pivot, which lead to somewhat wrong extrapolations.
Value
A matrix of dimension c(length(x), df)
, where either df
was supplied or if knots
were supplied, df =
length(knots) + degree
plus one if there is an intercept. Attributes
are returned that correspond to the arguments to bs
, and
explicitly give the knots
, Boundary.knots
etc for use by
predict.bs()
.
Author(s)
Douglas Bates and Bill Venables. Tweaks by R Core, and a patch
fixing extrapolation “outside” Boundary.knots
by Trevor
Hastie.
References
Hastie, T. J. (1992) Generalized additive models. Chapter 7 of Statistical Models in S eds J. M. Chambers and T. J. Hastie, Wadsworth & Brooks/Cole.
See Also
ns
, poly
, smooth.spline
,
predict.bs
, SafePrediction
Examples
require(stats); require(graphics)
bs(women$height, df = 5)
summary(fm1 <- lm(weight ~ bs(height, df = 5), data = women))
## example of safe prediction
plot(women, xlab = "Height (in)", ylab = "Weight (lb)")
ht <- seq(57, 73, length.out = 200)
lines(ht, predict(fm1, data.frame(height = ht)))
Create an Interpolation Spline
Description
Create an interpolation spline, either from x
and y
vectors (default
method), or from a formula
/ data.frame
combination (formula
method).
Usage
interpSpline(obj1, obj2, bSpline = FALSE, period = NULL,
ord = 4L,
na.action = na.fail, sparse = FALSE)
Arguments
obj1 |
either a numeric vector of |
obj2 |
if |
bSpline |
if |
period |
an optional positive numeric value giving a period for a periodic interpolation spline. |
ord |
an integer specifying the spline order, the number of
coefficients per interval. |
na.action |
a optional function which indicates what should happen
when the data contain |
sparse |
logical passed to the underlying
|
Value
An object that inherits from (S3) class spline
. The object can be in
the B-spline representation, in which case it will be of class
nbSpline
for natural B-spline, or in the piecewise polynomial
representation, in which case it will be of class npolySpline
.
Author(s)
Douglas Bates and Bill Venables
See Also
splineKnots
,
splineOrder
,
periodicSpline
.
Examples
require(graphics); require(stats)
ispl <- interpSpline( women$height, women$weight )
ispl2 <- interpSpline( weight ~ height, women )
# ispl and ispl2 should be the same
plot( predict( ispl, seq( 55, 75, length.out = 51 ) ), type = "l" )
points( women$height, women$weight )
plot( ispl ) # plots over the range of the knots
points( women$height, women$weight )
splineKnots( ispl )
Generate a Basis Matrix for Natural Cubic Splines
Description
Generate the B-spline basis matrix for a natural cubic spline.
Usage
ns(x, df = NULL, knots = NULL, intercept = FALSE,
Boundary.knots = range(x))
Arguments
x |
the predictor variable. Missing values are allowed. |
df |
degrees of freedom. One can supply |
knots |
breakpoints that define the spline. The default is no
knots; together with the natural boundary conditions this results in
a basis for linear regression on |
intercept |
if |
Boundary.knots |
boundary points at which to impose the natural
boundary conditions and anchor the B-spline basis (default the range
of the data). If both |
Details
ns
is based on the function splineDesign
. It
generates a basis matrix for representing the family of
piecewise-cubic splines with the specified sequence of
interior knots, and the natural boundary conditions. These enforce
the constraint that the function is linear beyond the boundary knots,
which can either be supplied or default to the extremes of the
data.
A primary use is in modeling formula to directly specify a natural spline term in a model: see the examples.
Value
A matrix of dimension length(x) * df
where either df
was
supplied or if knots
were supplied,
df = length(knots) + 1 + intercept
.
Attributes are returned that correspond to the arguments to ns
,
and explicitly give the knots
, Boundary.knots
etc for
use by predict.ns()
.
References
Hastie, T. J. (1992) Generalized additive models. Chapter 7 of Statistical Models in S eds J. M. Chambers and T. J. Hastie, Wadsworth & Brooks/Cole.
See Also
bs
, predict.ns
, SafePrediction
Examples
require(stats); require(graphics)
ns(women$height, df = 5)
summary(fm1 <- lm(weight ~ ns(height, df = 5), data = women))
## To see what knots were selected
attr(terms(fm1), "predvars")
## example of safe prediction
plot(women, xlab = "Height (in)", ylab = "Weight (lb)")
ht <- seq(57, 73, length.out = 200) ; nD <- data.frame(height = ht)
lines(ht, p1 <- predict(fm1, nD))
stopifnot(all.equal(p1, predict(update(fm1, . ~
splines::ns(height, df=5)), nD)))
# not true in R < 3.5.0
Create a Periodic Interpolation Spline
Description
Create a periodic interpolation spline, either from x
and
y
vectors, or from a formula/data.frame combination.
Usage
periodicSpline(obj1, obj2, knots, period = 2*pi, ord = 4L)
Arguments
obj1 |
either a numeric vector of |
obj2 |
if |
knots |
optional numeric vector of knot positions. |
period |
positive numeric value giving the period for the
periodic spline. Defaults to |
ord |
integer giving the order of the spline, at least 2. Defaults
to 4. See |
Value
An object that inherits from class spline
. The object can be in
the B-spline representation, in which case it will be a
pbSpline
object, or in the piecewise polynomial representation
(a ppolySpline
object).
Author(s)
Douglas Bates and Bill Venables
See Also
Examples
require(graphics); require(stats)
xx <- seq( -pi, pi, length.out = 16 )[-1]
yy <- sin( xx )
frm <- data.frame( xx, yy )
pispl <- periodicSpline( xx, yy, period = 2 * pi)
pispl
pispl2 <- periodicSpline( yy ~ xx, frm, period = 2 * pi )
stopifnot(all.equal(pispl, pispl2)) # pispl and pispl2 are the same
plot( pispl ) # displays over one period
points( yy ~ xx, col = "brown")
plot( predict( pispl, seq(-3*pi, 3*pi, length.out = 101) ), type = "l" )
Piecewise Polynomial Spline Representation
Description
Create the piecewise polynomial representation of a spline object.
Usage
polySpline(object, ...)
as.polySpline(object, ...)
Arguments
object |
An object that inherits from class |
... |
Optional additional arguments. At present no additional arguments are used. |
Value
An object that inherits from class polySpline
. This is the
piecewise polynomial representation of a univariate spline function.
It is defined by a set of distinct numeric values called knots. The
spline function is a polynomial function between each successive pair
of knots. At each interior knot the polynomial segments on each side
are constrained to have the same value of the function and some of its
derivatives.
Author(s)
Douglas Bates and Bill Venables
See Also
interpSpline
,
periodicSpline
,
splineKnots
,
splineOrder
Examples
require(graphics)
ispl <- polySpline(interpSpline( weight ~ height, women, bSpline = TRUE))
print( ispl ) # print the piecewise polynomial representation
plot( ispl ) # plots over the range of the knots
points( women$height, women$weight )
Evaluate a Spline Basis
Description
Evaluate a predefined spline basis at given values.
Usage
## S3 method for class 'bs'
predict(object, newx, ...)
## S3 method for class 'ns'
predict(object, newx, ...)
Arguments
object |
the result of a call to |
newx |
the |
... |
Optional additional arguments. At present no additional arguments are used. |
Value
An object just like object
, except evaluated at the new values
of x
.
These are methods for the generic function predict
for
objects inheriting from classes "bs"
or "ns"
. See
predict
for the general behavior of this function.
See Also
Examples
require(stats)
basis <- ns(women$height, df = 5)
newX <- seq(58, 72, length.out = 51)
# evaluate the basis at the new data
predict(basis, newX)
Evaluate a Spline at New Values of x
Description
The predict
methods for the classes that inherit from the
virtual classes bSpline
and polySpline
are used to
evaluate the spline or its derivatives. The plot
method for a
spline object first evaluates predict
with the x
argument missing, then plots the resulting xyVector
with
type = "l"
.
Usage
## S3 method for class 'bSpline'
predict(object, x, nseg = 50, deriv = 0, ...)
## S3 method for class 'nbSpline'
predict(object, x, nseg = 50, deriv = 0, ...)
## S3 method for class 'pbSpline'
predict(object, x, nseg = 50, deriv = 0, ...)
## S3 method for class 'npolySpline'
predict(object, x, nseg = 50, deriv = 0, ...)
## S3 method for class 'ppolySpline'
predict(object, x, nseg = 50, deriv = 0, ...)
Arguments
object |
An object that inherits from the |
x |
A numeric vector of |
nseg |
A positive integer giving the number of segments in a set
of equally-spaced |
deriv |
An integer between 0 and |
... |
further arguments passed to or from other methods. |
Value
an xyVector
with components
x |
the supplied or inferred numeric vector of |
y |
the value of the spline (or its |
Author(s)
Douglas Bates and Bill Venables
See Also
xyVector
,
interpSpline
,
periodicSpline
Examples
require(graphics); require(stats)
ispl <- interpSpline( weight ~ height, women )
opar <- par(mfrow = c(2, 2), las = 1)
plot(predict(ispl, nseg = 201), # plots over the range of the knots
main = "Original data with interpolating spline", type = "l",
xlab = "height", ylab = "weight")
points(women$height, women$weight, col = 4)
plot(predict(ispl, nseg = 201, deriv = 1),
main = "First derivative of interpolating spline", type = "l",
xlab = "height", ylab = "weight")
plot(predict(ispl, nseg = 201, deriv = 2),
main = "Second derivative of interpolating spline", type = "l",
xlab = "height", ylab = "weight")
plot(predict(ispl, nseg = 401, deriv = 3),
main = "Third derivative of interpolating spline", type = "l",
xlab = "height", ylab = "weight")
par(opar)
Design Matrix for B-splines
Description
Evaluate the design matrix for the B-splines defined by knots
at the values in x
.
Usage
splineDesign(knots, x, ord = 4, derivs, outer.ok = FALSE,
sparse = FALSE)
spline.des (knots, x, ord = 4, derivs, outer.ok = FALSE,
sparse = FALSE)
Arguments
knots |
a numeric vector of knot positions (which will be sorted increasingly if needed). |
x |
a numeric vector of values at which to evaluate the B-spline
functions or derivatives. Unless |
ord |
a positive integer giving the order of the spline function. This is the number of coefficients in each piecewise polynomial segment, thus a cubic spline has order 4. Defaults to 4. |
derivs |
an integer vector with values between |
outer.ok |
logical indicating if |
sparse |
logical indicating if the result should inherit from class
|
Value
A matrix with length(x)
rows and length(knots) - ord
columns. The i-th row of the matrix contains the coefficients of the
B-splines (or the indicated derivative of the B-splines) defined by
the knot
vector and evaluated at the i-th value of x
.
Each B-spline is defined by a set of ord
successive knots so
the total number of B-splines is length(knots) - ord
.
Note
The older spline.des
function takes the same arguments but
returns a list with several components including knots
,
ord
, derivs
, and design
. The design
component is the same as the value of the splineDesign
function.
Author(s)
Douglas Bates and Bill Venables
Examples
require(graphics)
splineDesign(knots = 1:10, x = 4:7)
splineDesign(knots = 1:10, x = 4:7, derivs = 1)
## visualize band structure
Matrix::drop0(zapsmall(6*splineDesign(knots = 1:40, x = 4:37, sparse = TRUE)))
knots <- c(1,1.8,3:5,6.5,7,8.1,9.2,10) # 10 => 10-4 = 6 Basis splines
x <- seq(min(knots)-1, max(knots)+1, length.out = 501)
bb <- splineDesign(knots, x = x, outer.ok = TRUE)
plot(range(x), c(0,1), type = "n", xlab = "x", ylab = "",
main = "B-splines - sum to 1 inside inner knots")
mtext(expression(B[j](x) *" and "* sum(B[j](x), j == 1, 6)), adj = 0)
abline(v = knots, lty = 3, col = "light gray")
abline(v = knots[c(4,length(knots)-3)], lty = 3, col = "gray10")
lines(x, rowSums(bb), col = "gray", lwd = 2)
matlines(x, bb, ylim = c(0,1), lty = 1)
Knot Vector from a Spline
Description
Return the knot vector corresponding to a spline object.
Usage
splineKnots(object)
Arguments
object |
an object that inherits from class |
Value
A non-decreasing numeric vector of knot positions.
Author(s)
Douglas Bates and Bill Venables
Examples
ispl <- interpSpline( weight ~ height, women )
splineKnots( ispl )
Determine the Order of a Spline
Description
Return the order of a spline object.
Usage
splineOrder(object)
Arguments
object |
An object that inherits from class |
Details
The order of a spline is the number of coefficients in each piece of the piecewise polynomial representation. Thus a cubic spline has order 4.
Value
A positive integer.
Author(s)
Douglas Bates and Bill Venables
See Also
splineKnots
,
interpSpline
,
periodicSpline
Examples
splineOrder( interpSpline( weight ~ height, women ) )
Construct an xyVector
Object
Description
Create an object to represent a set of x-y pairs. The resulting
object can be treated as a matrix or as a data frame or as a vector.
When treated as a vector it reduces to the y
component only.
The result of functions such as predict.spline
is returned as
an xyVector
object so the x-values used to generate the
y-positions are retained, say for purposes of generating plots.
Usage
xyVector(x, y)
Arguments
x |
a numeric vector |
y |
a numeric vector of the same length as |
Value
An object of class xyVector
with components
x |
a numeric vector |
y |
a numeric vector of the same length as |
Author(s)
Douglas Bates and Bill Venables
Examples
require(stats); require(graphics)
ispl <- interpSpline( weight ~ height, women )
weights <- predict( ispl, seq( 55, 75, length.out = 51 ))
class( weights )
plot( weights, type = "l", xlab = "height", ylab = "weight" )
points( women$height, women$weight )
weights