Rev 30448 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{polySpline}\alias{polySpline}%\alias{polySpline.bSpline}%\alias{polySpline.nbSpline}%\alias{polySpline.pbSpline}%\alias{polySpline.polySpline}\alias{as.polySpline}%\alias{predict.polySpline}%\alias{print.polySpline}\title{Piecewise Polynomial Spline Representation}\description{Create the piecewise polynomial representation of a spline object.}\usage{polySpline(object, \dots)as.polySpline(object, \dots)}\arguments{\item{object}{An object that inherits from class \code{spline}.}\item{\dots}{Optional additional arguments. At present no additionalarguments are used.}}\value{An object that inherits from class \code{polySpline}. This is thepiecewise polynomial representation of a univariate spline function.It is defined by a set of distinct numeric values called knots. Thespline function is a polynomial function between each successive pairof knots. At each interior knot the polynomial segments on each sideare constrained to have the same value of the function and some of itsderivatives.}\author{Douglas Bates and Bill Venables}\seealso{\code{\link{interpSpline}},\code{\link{periodicSpline}},\code{\link{splineKnots}},\code{\link{splineOrder}}}\examples{ispl <- polySpline( interpSpline( weight ~ height, women, bSpline = TRUE ) )print( ispl ) # print the piecewise polynomial representationplot( ispl ) # plots over the range of the knotspoints( women$height, women$weight )}\keyword{ models }