Rev 33262 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{load}\alias{load}\title{Reload Saved Datasets}\description{Reload datasets written 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.}}\details{\code{load} can load \R objects saved in the current or any earlierformat. It can read a compressed file (see \code{\link{save}})directly from a file or from a suitable connection (including a callto \code{\link{url}}).Only \R objects saved in the current format (used since \R 1.4.0)can be read from a connection. If no input is available on aconnection a warning will be given, but any input not in the currentformat will result in a error.}\value{A character vector of the names of objects created, invisibly.}\section{Warning}{Saved \R objects are binary files, even those saved with\code{ascii = TRUE}, so ensure that they are transferred withoutconversion of end of line markers. \code{load} tries to detect thiscase and give an informative error message.}\seealso{\code{\link{save}}, \code{\link{download.file}}.}\examples{## save all datasave(list = ls(all=TRUE), file= "all.Rdata")## restore the saved values to the current environmentload("all.Rdata")## restore the saved values to the user's workspaceload("all.Rdata", .GlobalEnv)\dontrun{## print the value to see what objects were created.print(load(url("http://some.where.net/R/data/kprats.rda")))}}\keyword{file}