qs_save | R Documentation |
Saves an object to disk using the qs2
format.
qs_save(object, file,
compress_level = qopt("compress_level"),
shuffle = qopt("shuffle"),
nthreads = qopt("nthreads"))
object |
The object to save. |
file |
The file name/path. |
compress_level |
The compression level used (the initial value is 3L). The maximum and minimum possible values depend on the version of the ZSTD library used. As of ZSTD 1.5.6 the maximum compression level is 22, and the minimum is -131072. Usually, values in the low positive range offer very good performance in terms of speed and compression. |
shuffle |
Whether to allow byte shuffling when compressing data (the initial value is TRUE). |
nthreads |
The number of threads to use when compressing data (the initial value is 1L). |
No value is returned. The file is written to disk.
x <- data.frame(int = sample(1e3, replace=TRUE),
num = rnorm(1e3),
char = sample(state.name, 1e3, replace=TRUE),
stringsAsFactors = FALSE)
myfile <- tempfile()
qs_save(x, myfile)
x2 <- qs_read(myfile)
identical(x, x2) # returns TRUE
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.