The R Project SVN R

Rev

Rev 12976 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

\name{load}
\title{Reload Saved Datasets}
\alias{load}
\description{
  This function will reload the datasets written to a file with the
  function \code{save}.
}
\usage{
load(file, envir = parent.frame())
}
\arguments{
  \item{file}{a character string giving the name of the file to load.}
  \item{envir}{the environment where the data should be loaded.}
}
\seealso{
  \code{\link{save}}.
}
\examples{
## save all data
save(list = ls(), file= "all.Rdata")

## restore the saved values to the current environment
load("all.Rdata")

## restore the saved values to the workspace
load("all.Rdata", .GlobalEnv)
}
\keyword{file}