Description Usage Arguments Details Value Examples
View source: R/save-all-objects.R
Iterate over objects available in the designated environment and create a RDS object for each separate object.
1 2 3 4 5 6 7 | save_all_objects(
env = parent.frame(n = 1),
output_path = tempdir(),
append_timestamps = TRUE,
skip_functions = TRUE,
...
)
|
env |
Environment to search for objects. Defaults to
|
output_path |
Defaults to |
append_timestamps |
A boolean, defaults to |
skip_functions |
Defaults to |
... |
As in |
This a convenience function iterates over objects available within the designated environment and creates a RDS file for each single item. The files can have automatically dates added to them.
A character vector of absolute file paths
1 2 | a <- 1
save_all_objects()
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.