Rev 50416 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File src/library/splines/man/interpSpline.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{interpSpline}\alias{interpSpline}\title{Create an Interpolation Spline}\description{Create an interpolation spline, either from \code{x} and \code{y}vectors, or from a formula/data.frame combination.}\usage{interpSpline(obj1, obj2, bSpline = FALSE, period = NULL,na.action = na.fail)}\arguments{\item{obj1}{Either a numeric vector of \code{x} values or a formula.}\item{obj2}{If \code{obj1} is numeric this should be a numeric vectorof the same length. If \code{obj1} is a formula this can be anoptional data frame in which to evaluate the names in the formula.}\item{bSpline}{If \code{TRUE} the b-spline representation is returned,otherwise the piecewise polynomial representation is returned.Defaults to \code{FALSE}.}\item{period}{An optional positive numeric value giving a period for aperiodic interpolation spline.}\item{na.action}{a optional function which indicates what should happenwhen the data contain \code{NA}s. The default action(\code{na.omit}) is to omit any incomplete observations. Thealternative action \code{na.fail} causes \code{interpSpline} to printan error message and terminate if there are any incompleteobservations.}}\value{An object that inherits from class \code{spline}. The object can be inthe B-spline representation, in which case it will be of class\code{nbSpline} for natural B-spline, or in the piecewise polynomialrepresentation, in which case it will be of class \code{npolySpline}.}\author{Douglas Bates and Bill Venables}\seealso{\code{\link{splineKnots}},\code{\link{splineOrder}},\code{\link{periodicSpline}}.}\examples{require(graphics); require(stats)ispl <- interpSpline( women$height, women$weight )ispl2 <- interpSpline( weight ~ height, women )# ispl and ispl2 should be the sameplot( predict( ispl, seq( 55, 75, length.out = 51 ) ), type = "l" )points( women$height, women$weight )plot( ispl ) # plots over the range of the knotspoints( women$height, women$weight )splineKnots( ispl )}\keyword{ models }