How can I convert Json to data frame in R

Try using jsonlite library. It work for me

fromJSON(temp) %>% as.data.frame

Following is output 

if you want list.

fromJSON(temp) 

Leave a Comment