Rev 12778 | Rev 19008 | Go to most recent revision | 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 thefunction \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 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}