Question

I used rjson and do this JSON <- lapply(data$toParse, fromJSON)

my toParse has 600k rows of simple/short JSON.

However, it is very slow possibly because fromJSON doesn't vectorize operation so I have to use lapply.

I am wondering if there is any better way for parsing a list of JSON?

Was it helpful?

Solution

What about pasting the text into an array and parsing, rjson::fromJSON(sprintf("[%s]", paste(data$toParse, collapse=",")))?

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top