Description Usage Arguments Value
This function is a wrapper for the base R
save()
function that adds prefix/suffix information and compression to the R objects that are saved to file.
1 2 3 4 5 6 7 | verbose.save(
object,
path.with.trailing.slash = "",
prefix.suffix = c(prefix = "This file contains an R object called ", suffix =
".SavedFromR"),
time.stamp = gsub(":", "-", Sys.time())
)
|
object |
an object or a character element representing the R object to be saved. |
path.with.trailing.slash |
set to null by default. |
prefix.suffix |
a named (prefix, suffix), two-element character vector representing the prefix and suffix for the file name. By default, the prefix is "This file contains an R object called " and the suffix is ".SavedFromR". |
time.stamp |
the format for the timestamp that appears in the file name. By default, the format is yyyy-mm-dd hh-mm-ss. |
none.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.