| qdump {qs} | R Documentation |
Exports the uncompressed binary serialization to a list of Raw Vectors. For testing purposes and exploratory purposes mainly.
qdump(file)
file |
the file name/path. |
The uncompressed serialization
x <- data.frame(int = sample(1e3, replace=TRUE),
num = rnorm(1e3),
char = randomStrings(1e3), stringsAsFactors = FALSE)
myfile <- tempfile()
qsave(x, myfile)
x2 <- qdump(myfile)