嗨,我在 Windows 中使用 RJSONIO,当我执行以下操作时,它工作正常:
library(RJSONIO)
fromJSON("https://issues.apache.org/jira/rest/api/2/project")
它返回一个 JSON,但是当我在 Linux 中做同样的事情时,我收到以下错误:
Error in file(con, "r") : cannot open the connection
在 Google 上进行一些搜索后,我注意到我需要提及 "file=" fromJSON(file="https://issues.apache.org/jira/rest/api/2/project")
所以现在我得到了错误:
unable to find an inherited method for function âfromJSONâ for signature â"missing", "missing"â
有什么建议吗?