save {base} | R Documentation |
save
writes a external representation of R objects to the
specified file. The objects can be read back from the file at a later
date by using the function load
.
save(..., list = character(0), file = "", ascii = FALSE)
... |
the names of the objects to be saved. |
list |
A character vector containing the names of objects to be saved. |
file |
the name of the file where the data will be saved. |
ascii |
if |
dput
,
dump
,
load
.
save(x, y, file = "xy.Rdata")
save(list = ls(), file = "all.Rdata")