Write a Dense Matrix to StreamPress v3 Format
Usage
st_write_dense(
x,
path,
include_transpose = FALSE,
chunk_cols = 2048L,
codec = "raw",
delta = FALSE,
verbose = FALSE
)Arguments
- x
A numeric matrix.
- path
Output file path. Extension
.spzis recommended.- include_transpose
Logical; store transposed panels. Default
FALSE.- chunk_cols
Integer; columns per chunk. Default 2048.
- codec
Compression codec:
"raw","fp16","quant8","fp16_rans","fp32_rans". Default"raw".- delta
Logical; apply XOR-delta encoding. Default
FALSE.- verbose
Logical; print write statistics. Default
FALSE.