save2 {BBmisc} | R Documentation |
A simple wrapper for save
. Understands key = value syntax to save
objects using arbitrary variable names. All options of save
,
except list
and envir
, are available and passed to
save
.
save2(
file,
...,
ascii = FALSE,
version = NULL,
compress = !ascii,
compression_level,
eval.promises = TRUE,
precheck = TRUE
)
file |
File to save. |
... |
[ |
ascii |
See help of |
version |
See help of |
compress |
See help of |
compression_level |
See help of |
eval.promises |
See help of |
precheck |
See help of |
See help of save
.
x = 1
save2(y = x, file = tempfile())