View source: R/epi_utils_session.R
epi_utils_session | R Documentation |
epi_utils_session() is a convenience function to save an R session.
epi_utils_session(output_prefix = NULL, objects_to_save = NULL, ...)
output_prefix |
File name as string, '.RData' is appended to saved objects. Default is e.g. 'session_date.RData' eg 'session_2019-03-01.RData' |
objects_to_save |
String with list of objects to save. Assumes you only want a subset from the R session. Use saveRDS() for one object or save.image() for the whole session instead. |
... |
pass any other parameters from save() such as compress = 'gzip' |
Saves an external representation of the R objects to file
Antonio J Berlanga-Taylor <https://github.com/AntonioJBT/episcout>
save.image
,
saveRDS
,
load
,
readRDS
,
epi_utils_log
.
## Not run:
x <- stats::runif(20)
y <- list(a = 1, b = TRUE, c = "oops")
# See objects to save:
ls()
objects_to_save <- c('x', 'y')
epi_utils_session(output_prefix = 'xy',
objects_to_save = objects_to_save
)
dir()
rm(list = objects_to_save)
ls()
load('xy.RData')
ls()
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.