5

我是 R 新手,对编程没有太多了解。我在将文件(包含 JSON 对象)加载到 R 时遇到问题。

> library(rjson)
> jsonFile <- "C:\\Users\\jsonRecords.txt"
> jsonData <- fromJSON( jsonFile, method = "C", unexpected.escape = "error" )
Error in fromJSON(jsonFile, method = "C", unexpected.escape = "error") : 
  unexpected character 'C'

我希望将数据读入 R 以进行进一步分析。任何帮助将不胜感激。

谢谢

4

2 回答 2

11

试试这个:

    fromJSON( file = json_file )

它将读取所有文件。这里有一个例子:

write(toJSON( iris ),'jstest')
res <- fromJSON( file="jstest")

str(res)
List of 5
 $ Sepal.Length: num [1:150] 5.1 4.9 4.7 4.6 5 5.4 4.6 5 4.4 4.9 ...
 $ Sepal.Width : num [1:150] 3.5 3 3.2 3.1 3.6 3.9 3.4 3.4 2.9 3.1 ...
 $ Petal.Length: num [1:150] 1.4 1.4 1.3 1.5 1.4 1.7 1.4 1.5 1.4 1.5 ...
 $ Petal.Width : num [1:150] 0.2 0.2 0.2 0.2 0.2 0.4 0.3 0.2 0.2 0.1 ...
 $ Species     : chr [1:150] "setosa" "setosa" "setosa" "setosa" ...
于 2013-02-26T06:19:07.273 回答
5

看起来你所缺少的只是file=论点

fromJSON( file = json_file, method = "C", unexpected.escape = "error" )

如果你看args(fromJSON)

 > args(fromJSON)
 function (json_str, file, method = "C", unexpected.escape = "error") 

你会看到第一个参数是json_str,第二个参数是file。由于您只提供第二个参数,因此您必须明确告诉函数您要给它的是什么。 (否则,它认为你的json_file字符串是一个 json 对象,它会尝试这样对待它。因此会出现错误。)

于 2013-02-26T06:10:05.917 回答