View source: R/utils_filesave.R
resave | R Documentation |
Add objects to existing Rdata file
resave( ..., list = character(), file = stop("'file' must be specified"), compress = "xz", ascii = FALSE, version = NULL, envir = parent.frame(), eval.promises = TRUE, precheck = TRUE )
... |
the names of the objects to be saved (as symbols or character strings). |
list |
A character vector containing the names of objects to be saved. |
file |
a (writable binary-mode) connection or the name of the
file where the data will be saved (when tilde expansion
is done). Must be a file name for |
compress |
logical or character string specifying whether saving
to a named file is to use compression. |
ascii |
if |
version |
the workspace format version to use. |
envir |
environment to search for objects to be saved. |
eval.promises |
logical: should objects which are promises be forced before saving? |
precheck |
logical: should the existence of the objects be checked before starting to save (and in particular before opening the file/connection)? Does not apply to version 1 saves. |
base::save()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.