Save an object to .rds in a given output_dir
, with programmatic naming.
Source: R/utils.R
to_rds_with_suffix.Rd
By default, names the .rds
file according to
the object name in the R environment, with an
optional string suffix appended.
So for example a variable named my_var
with
suffix equal to "my_suffix"
would be saved to disk
as <output_dir>/my_var_my_suffix.rds
. Alternatively,
a custom save_basename
can be supplied. The suffix
will still be added.
Arguments
- object
Object to save as an
.rds
file.- output_dir
Directory in which to save the
.rds
file.- save_basename
Base name for the
.rds
, before anysuffix
or the file extension, as a string. IfNULL
, use the name of the object in the R environment. DefaultNULL
.- save_suffix
Suffix to append to the save_basename. Default
""
(no suffix).- ext
Extension for the saved file, without the
.
. Defaultrds
.