qs (version 0.12)

qdump: qdump

Description

Exports the uncompressed binary serialization to a list of Raw Vectors. For testing purposes and exploratory purposes mainly.

Usage

qdump(file)

Arguments

file

the file name/path.

Value

The uncompressed serialization

Examples

Run this code
# NOT RUN {
x <- data.frame(int = sample(1e3, replace=TRUE), 
                 num = rnorm(1e3), 
                 char = randomStrings(1e3), stringsAsFactors = FALSE)
myfile <- tempfile()
qsave(x, myfile)
x2 <- qdump(myfile)
# }

Run the code above in your browser using DataLab