I use below code for reading review json file. recently I have a problem for reading 1450000 and more lines...my computer cant read after 6 hours! what is the solution?
setwd("d:/yelp_dataset")
rm(list=ls())
library(jsonlite)
rev<- 'd:/yelp_dataset/review.JSON'
revu<-jsonlite::stream_in(textConnection(readLines(rev, n=1450000)),verbose=F)