1
我想將多個json文件讀入工作目錄以便進一步轉換爲數據集。我在json目錄下有text1,text2,text3文件。下面是我寫的代碼:從一個目錄導入多個json文件並附上數據
setwd("Users/Desktop/json")
temp = list.files(pattern="text*.")
myfiles = lapply(temp, read.delim)
library("rjson")
json_file <- "myfiles"
library(jsonlite)
out <- jsonlite::fromJSON(json_file)
out[vapply(out, is.null, logical(1))] <- "none"
data.frame(out, stringsAsFactors = FALSE)[,1:5]
View(out)
我有大約200文件,所以我想知道是否有辦法在其中JSON文件可以導入。
感謝
看看[this](http://stackoverflow.com/questions/35421870/reading-multiple-json-files-in-a-directory-into-one-data-frame/42512668#42512668)解決方案以及。 – amonk 2017-02-28 15:29:17