Home > Software design >  Converting JSON file to df in R
Converting JSON file to df in R

Time:07-03

I have never worked with json files before so sorry in advance if my language/explanation is difficult to understand. First time posting so big apologies if this is in the wrong format too!

I'm trying to convert a json file in R, so far I can upload the file into a list using:

jdata <- RJSONIO::fromJSON("./data.json")

The original raw file looks like:

[
    {
        "name": "11 bit studios",
        "website": "https://11bitstudios.com/",
        "headquarters": "Warsaw,            
  • Related