在Tableau中使用R下载JSON数据

时间:2015-11-22 09:39:35

标签: json r tableau

我想在Tableau中使用来自openFDA API的数据,这是JSON格式的数据,这样当数据更改时,Tableau也可以在刷新时更新可视化。我试图在Tableau中使用R代码,但我收到一条错误消息。我正在使用的代码是:

SCRIPT_INT('library(jsonlite);
fda<-fromJSON("https://api.fda.gov/drug/label.json?search=effective_time:[20090601+TO+20140731]&count=effective_time");
fda<-fda$results;
fda<-fda[,2]')

以及我收到的错误消息:

"STRING_INT is being used with(string), did you mean (string, ...)?"

有关如何解决此错误的任何建议?

在R中,它可以正常工作,如下所示:

library(jsonlite)
fda<-fromJSON("https://api.fda.gov/drug/label.json?search=effective_time:[20090601+TO+20140731]&count=effective_time")
fda<-fda$results;
fda<-fda[,2]
class(fda)
head(fda)

0 个答案:

没有答案