The R Project SVN R

Rev

Rev 50312 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
42333 ripley 1
% File src/library/base/man/dataframeHelpers.Rd
2
% Part of the R package, http://www.R-project.org
59039 ripley 3
% Copyright 1995-2009 R Core Team
42333 ripley 4
% Distributed under GPL 2 or later
5
 
24794 ripley 6
\name{dataframeHelpers}
7
\title{Data Frame Auxiliary Functions}
8
\alias{xpdrows.data.frame}
9
\description{
50312 ripley 10
  Internal auxiliary functions for use with data frames.
24794 ripley 11
}
12
\usage{
13
xpdrows.data.frame(x, old.rows, new.rows)
14
}
15
\arguments{
16
  \item{x}{object of class \code{data.frame}.}
17
  \item{old.rows, new.rows}{row names for old and new rows.}
18
}
24810 ripley 19
\details{
24794 ripley 20
  \code{xpdrows.data.frame} is an auxiliary function which expands the
21
  rows of a data frame.  It is used by the data frame methods of
22
  \code{[<-} and \code{[[<-} (which perform subscripted assignments on a
23
  data frame), and not intended to be called directly.
24
}
25
\seealso{
24810 ripley 26
  \code{\link{[.data.frame}}
24794 ripley 27
}
24810 ripley 28
\keyword{internal}