Rev 30448 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
%% $Id: xyVector.Rd,v 1.8 2003/03/03 18:02:04 ripley Exp $\name{xyVector}\alias{xyVector}%\alias{as.data.frame.xyVector}%\alias{plot.xyVector}\title{Construct an xyVector Object}\description{Create an object to represent a set of x-y pairs. The resultingobject can be treated as a matrix or as a data frame or as a vector.When treated as a vector it reduces to the \code{y} component only.The result of functions such as \code{predict.spline} is returned asan \code{xyVector} object so the x-values used to generate they-positions are retained, say for purposes of generating plots.}\usage{xyVector(x, y)}\arguments{\item{x}{a numeric vector}\item{y}{a numeric vector of the same length as \code{x}}}\value{An object of class \code{xyVector} with components\item{x}{a numeric vector}\item{y}{a numeric vector of the same length as \code{x}}}\author{Douglas Bates and Bill Venables}\examples{ispl <- interpSpline( weight ~ height, women )weights <- predict( ispl, seq( 55, 75, len = 51 ))class( weights )plot( weights, type = "l", xlab = "height", ylab = "weight" )points( women$height, women$weight )weights}\keyword{ models }