qx_dump | R Documentation |
Exports the uncompressed binary serialization to a list of raw vectors for both qs2
and qdata
formats.
For testing and exploratory purposes mainly.
qx_dump(file)
file |
A file name/path. |
The uncompressed serialization.
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)
binary_data <- qx_dump(myfile)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.