Rev 17138 | Rev 22311 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{load}\alias{load}\title{Reload Saved Datasets}\description{Reload the datasets written to a file with the function \code{save}.}\usage{load(file, envir = parent.frame())}\arguments{\item{file}{a connection or a character string giving the name of thefile to load.}\item{envir}{the environment where the data should be loaded.}}\seealso{\code{\link{save}}.}\examples{## save all datasave(list = ls(), file= "all.Rdata")## restore the saved values to the current environmentload("all.Rdata")## restore the saved values to the workspaceload("all.Rdata", .GlobalEnv)}\keyword{file}