我是 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 以进行进一步分析。任何帮助将不胜感激。
谢谢