msgpack.writeResult {msgpackR} | R Documentation |
Save serialized data to file.
msgpack.writeResult(filename, result)
filename |
filename that you want to save as |
result |
serialized data that you want to save |
Mikiya TANIZAWA 1970mix@gmail.com
(data <- c(1,2,3))
#[1] 1 2 3
(d <- pack(data))
#[1] 93 01 02 03
msgpack.writeResult("test.txt", d)