I try to learn how to handle out huge json file in R
and convert them to csv in order to make more statistic process with them.
I try to experement with this dataset.
What I have now which calls some packages, take as input the json file (if you extract it is huge) and converts it to json and save it to csv. However the csv have only 48 rows and I think it must have more.
require(RJSONIO)
require(rjson)
library("rjson")
filename2 <- "path for json file"
json_data <- fromJSON(file = filename2)
json <- do.call("rbind", json_data)
write.csv(json,file='C:/json.csv', row.names=FALSE)