Rev 50416 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File src/library/splines/man/splineOrder.Rd% Part of the R package, http://www.R-project.org% Copyright 1995-2007 R Core Development Team% Distributed under GPL 2 or later\name{splineOrder}\alias{splineOrder}\title{Determine the Order of a Spline}\description{Return the order of a spline object.}\usage{splineOrder(object)}\arguments{\item{object}{An object that inherits from class \code{"spline"}.}}\details{The order of a spline is the number of coefficients in each piece ofthe piecewise polynomial representation. Thus a cubic spline hasorder 4.}\value{A positive integer.}\author{Douglas Bates and Bill Venables}\seealso{\code{\link{splineKnots}},\code{\link{interpSpline}},\code{\link{periodicSpline}}}\examples{splineOrder( interpSpline( weight ~ height, women ) )}\keyword{ models }