JSON and data frames
An object of (named) columns
json_col <- parse_json('
{
"x": ["a", "x", "z"],
"y": [10, null, 3]
}
')
str(json_col)
## List of 2
## $ x:List of 3
## ..$ : chr "a"
## ..$ : chr "x"
## ..$ : chr "z"
## $ y:List of 3
## ..$ : int 10
## ..$ : NULL
## ..$ : int 3