Rev 3456 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{load}\title{Reload Saved Datasets}\usage{load(filename, envir = sys.frame(sys.parent())))}\alias{load}\arguments{\item{filename}{a character string giving the name of the file toload.}\item{envir}{the environment where the data should be loaded}}\description{This function will reload the datasets written to a filewith the function \code{save}.}\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 global environmentload("all.Rdata",globalenv())}\keyword{file}