skip to Main Content

Parse simple JSON into dataframe with R

A seemingly simple JSON file that I would like to parse with R: tmp_extract <- "{"encrypted_values":[{"name_a":"value_a"}, {"name_b":"value_b"}, {"name_c":"value_c"}]}" An attempt with jsonlite::fromJSON produces a dataframe with as many columns as there are names and only a value per column. tmp_extract…

VIEW QUESTION
Back To Top
Search