qx_dump: qx_dump

View source: R/RcppExports.R

qx_dumpR Documentation

qx_dump

Description

Exports the uncompressed binary serialization to a list of raw vectors for both qs2 and qdata formats. For testing and exploratory purposes mainly.

Usage

qx_dump(file)

Arguments

file

A file name/path.

Value

A list containing uncompressed binary serialization and metadata.

Examples

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)

qs2 documentation built on April 4, 2025, 3:28 a.m.

Related to qx_dump in qs2...