This facility is useful for saving, and later re-loading, the results of
time-consuming computations. It would typically be
used in an R script file or an Sweave
document. If the file called filename
does not yet exist,
then expr
will be evaluated
and the results will be saved in filename
.
The optional argument objects
specifies which results should be saved
to the file: the default is to save all objects that were created
by evaluating the expression.
If the file called filename
already exists, then it
will be loaded. The optional argument objects
specifies the names
of objects that should be present in the file; a warning is issued
if any of them are missing.
The resulting objects can be assigned into any desired destination
.
The default behaviour is equivalent to evaluating expr
in the current environment.