from_ndjson {jsonify} | R Documentation |
from ndjson
Description
Converts ndjson into R objects
Usage
from_ndjson(ndjson, simplify = TRUE, fill_na = FALSE)
Arguments
ndjson |
new-line delimited JSON to convert to R object. Can be a string, url or link to a file. |
simplify |
logical, if |
fill_na |
logical, if |
Examples
js <- to_ndjson( data.frame( x = 1:5, y = 6:10 ) )
from_ndjson( js )
[Package jsonify version 1.2.2 Index]