serializeNoHeader | R Documentation |
serialize an object to a raw vector, without the "RDS" file header.
serializeNoHeader(x, dropTypeLen = FALSE)
x |
the R object |
dropTypeLen |
logical; if TRUE, also drop the initial TYPE and length fields (8 extra bytes) |
raw vector to which x has been serialized in binary little-endian (non-XDR) format, but without the leading 'B\n' and three 32-bit integers of header: RDS_serialization_version RDS_R_writer_version RDS_min_R_version So we just drop the first 14 bytes.
this is a convenience function used by sqliteToRds, and is intended for small objects, since the serialization is done in-memory.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.