The R Project SVN R

Rev

Rev 23228 | Rev 30461 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 23228 Rev 27447
Line 12... Line 12...
12
\arguments{
12
\arguments{
13
  \item{file}{a connection or a character string giving the name of the
13
  \item{file}{a connection or a character string giving the name of the
14
    file to load.}
14
    file to load.}
15
  \item{envir}{the environment where the data should be loaded.}
15
  \item{envir}{the environment where the data should be loaded.}
16
  \item{url}{a character string naming a URL.}
16
  \item{url}{a character string naming a URL.}
17
  \item{quiet, \dots}{additional arguments to \code{\link{download.file}}.}
17
  \item{quiet, \dots}{additional arguments to
-
 
18
    \code{\link[utils]{download.file}}.}
18
}
19
}
19
\details{
20
\details{
20
  \code{load} can load \R objects saved in the current or any earlier
21
  \code{load} can load \R objects saved in the current or any earlier
21
  format.  It can read a compressed file (see \code{\link{save}})
22
  format.  It can read a compressed file (see \code{\link{save}})
22
  directly from a file or from a suitable connection.
23
  directly from a file or from a suitable connection.
Line 26... Line 27...
26
}
27
}
27
\value{
28
\value{
28
  A character vector of the names of objects created, invisibly.
29
  A character vector of the names of objects created, invisibly.
29
}
30
}
30
\seealso{
31
\seealso{
31
  \code{\link{save}}, \code{\link{download.file}}.
32
  \code{\link{save}}, \code{\link[utils]{download.file}}.
32
}
33
}
33
\examples{
34
\examples{
34
## save all data
35
## save all data
35
save(list = ls(), file= "all.Rdata")
36
save(list = ls(), file= "all.Rdata")
36
 
37