save_image_filtered | R Documentation |
save.image()
that allows excluding specific namesIf you want to save your entire workspace except for a specific set of variable names that you wish to exclude, this function makes it easy to do so.
save_image_filtered( file = ".RData", version = NULL, ascii = FALSE, compress = !ascii, safe = TRUE, exclude = NULL )
file, version, ascii, compress, safe |
These arguments have the
same meaning as in |
exclude |
Character vector of variable names not to save. |
save.image()
x <- 5 y <- 3 datafile <- tempfile(fileext = ".rda") # Only saves y, not x save_image_filtered(datafile, exclude = "x")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.