R语言convesio of json files to csv or R data format

library(RJSONIO)

url <- "path/yelp_academic_dataset_business.json"

con = file(url, "r")

input <- readLines(con, -1L)

my_results <- lapply(X=input,fromJSON)

你可能感兴趣的:(R语言convesio of json files to csv or R data format)