Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在使用“fromJSON”命令时遇到了很多麻烦。我正在尝试使用他们的 API 收集 Instagram 数据,但此命令不起作用。我正在使用 R 并且我安装了将 JSON 转换为 R 的两个包,但我不断收到以下错误:错误:找不到函数“fromJSON”
我将 R Studio 和 R 3.2.2 用于 Windows 8 x64。我尝试搜索并找不到解决方案。任何帮助,将不胜感激。
如果您刚刚安装了软件包,请尝试 rjson::fromJSON() 而不是 fromJSON()
单独安装软件包是不够的。您还需要加载库...在调用其中的任何函数之前,使用library(rjson)或library(RJSONIO)或...取决于您喜欢的包。
library(rjson)
library(RJSONIO)