ndjson (version 0.6.0)

flatten: Flatten a character vector of individual JSON lines into a tbl_dt

Description

Flatten a character vector of individual JSON lines into a tbl_dt

Usage

flatten(x, cls = c("dt", "tbl"))

Arguments

x

character vector of individual JSON lines to flatten

cls

the package uses data.table::rbindlist for speed but that's not always the best return type for everyone, so you have option of keeping it a tbl_dt via "dt" or converting it to a tbl

Value

tbl_dt or tbl or data.frame

Examples

Run this code
# NOT RUN {
flatten('{"top":{"next":{"final":1,"end":true},"another":"yes"},"more":"no"}')
# }

Run the code above in your browser using DataLab