
Convert R object to a raw vector of JSON data
write_json_raw(x, opts = list(), ...)
Raw vector containing the JSON
the object to be encoded
Named list of serialization options. Usually created by opts_write_json()
Other named options can be used to override any options in opts
.
The valid named options are identical to arguments to opts_write_json()
Other JSON Serializer:
write_json_file()
,
write_json_str()
,
write_ndjson_file()
,
write_ndjson_raw()
,
write_ndjson_str()
js <- write_json_raw(head(iris, 3))
js
read_json_raw(js)
Run the code above in your browser using DataLab