Hello,
I'm new to R. How do I read in a folder that contains many json files into R? I want the files to have a list format in R. I can read in individual json files using the rjson package, but I don't know how to do a whole folder of them. For example, I can do this:
my_list <- fromJSON(file = "my_file_name.json")
and it produces a list I can work with. Thank you!!