I am reading a json
file as a response from api
which is nested and when I look at them in a dataframe/table structure format then there are data frame under data frame.
I have saved file at github location.
library(tidyverse)
library(rjson)
library(jsonlite)
library(RCurl)
library(httr)
library(broom)
# file is available at this github link:
file_url1 <- "https://raw.githubusercontent.com/johnsnow09/covid19-df_stack-code/main/json_response.json"
json_response <- fromjson(url(file_url1))
I am interested in data inside sessions
variable and have tried using map
, tidy
but it didn't work.
json_response %>%
#converting dataframe cols to list
map_if(., is.data.frame, list) %>%
# to tibble
map_if(is_list, tibble) %>%
mutate(sessions = map(sessions, broom::tidy),
vaccine_fees = map(vaccine_fees, tidy)) %>%
unnest()
Above code is not working!!
Also read from another SO post Converting nested JSON file to R dataframe and tried:
library(rjson)
url(file_url1) %>%
# jsonlite::fromJSON()
rjson::fromJSON()
map_dfr(json_response[[1]]$centers[[1]]$sessions[[1]], as.tibble)
But have not been able to get the correct information.
The purpose of this to get information about following fields from the json file:
district_name
,name
,min_age_limit
,available_capacity
,available_capacity_dose1
,vaccine
and then can apply filters on it based on the desired values.
You can
unnest
thesessions
variable and theslots
variable within it to get a long dataframe.