I have stored json data structure in a dataframe with single column, named json_data in R so my json text is stored in this format
row 1) { \
Here is one possibility:
library(rjson)
json_data <- fromJSON(file = json_file)
formatted_add <- lapply(json_data$results, function(x) x$formatted_add)
lat <- lapply(json_data$results, function(x) x$geometry$location$lat)
lng <- lapply(json_data$results, function(x) x$geometry$location$lng)
data <- cbind(formatted_add, lat, lng)
I hope this is what you need.