qs_savem | R Documentation |
Saves (serializes) multiple objects to disk.
qs_savem(...)
... |
Objects to serialize. Named arguments will be passed to |
This function extends qs_save()
to replicate the functionality of base::save()
to save multiple objects. Read them back with qs_readm()
.
x1 <- data.frame(int = sample(1e3, replace=TRUE),
num = rnorm(1e3),
char = sample(starnames$`IAU Name`, 1e3, replace=TRUE),
stringsAsFactors = FALSE)
x2 <- data.frame(int = sample(1e3, replace=TRUE),
num = rnorm(1e3),
char = sample(starnames$`IAU Name`, 1e3, replace=TRUE),
stringsAsFactors = FALSE)
myfile <- tempfile()
qs_savem(x1, x2, file=myfile)
rm(x1, x2)
qs_readm(myfile)
exists('x1') && exists('x2') # returns true
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.