I have a small problem, i need to use data from a json file and i can't find how to create my table. i have installed the rjson package and i have down the following :
fichier <- readLines("C:/Users/Documents/sujet.json")
L <-lapply(fichier,fromJSON)
Final_table <- lapply(L, data.frame)
But it doesn't worked. My file "sujet.json" is composed of different json that's why i did the first lapply
, but i can't create a table from that list. if someone have an idea.