Flatten nested JSON to dataframe in R

后端 未结 1 1815
一生所求
一生所求 2021-01-29 01:58

I am trying to flatten a nested JSON file from within R,

Here is my current code

library(jsonlite)
json_file <- \"json file\"
json_data = fromJSON(js         


        
相关标签:
1条回答
  • 2021-01-29 02:42

    Just change the file name. Json file should be .json

    json_file <- "json file.json"
    
    0 讨论(0)
提交回复
热议问题