save_RDSQS | R Documentation |
Read RDS or QS format file
save_RDSQS(object, file, nthread = 5)
object |
the object to save |
file |
path to file with "rds" or "qs" file extension |
nthread |
numeric, number of threads for qs::qread |
R object loaded from file
path <- tempfile(fileext = ".qs")
# Simple numeric save
x <- 1
save_RDSQS(x, path)
read_RDSQS(path)
# Save a list
x <- list(a = 1, b = c(1,2,3))
save_RDSQS(x, path)
read_RDSQS(path)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.