How to import JSON data into R with one nested list?
I have a JSON file to be imported into R. Here is a section of the data: {"data":[{"British Columbia":"BC","BC":"4.63"}, {"Alberta":"AB","AB":"4.15"}, {"Ontario":"ON","ON":"13.6"}]} I need to turn this data into a dataframe, but the import is producing many NA values. I tried…