This is my JSON format:
{"abc":
{
"123":[45600],
"378":[78689],
"343":[23456]
}
}
I want to convert this JSON format to CSV file in R.
CSV format :
ds y
123 45600
378 78689
343 23456
I'm using R library rjson to do this..
I tried this:
jsonFile <- fromJSON(file=fileName)
json_data_frame <- as.data.frame(jsonFile)
but it's not working out.