查询和请求gtrendsr的问题

时间:2017-02-17 08:00:21

标签: gtrendsr

我已成功使用

登录Google帐户
gconnect(usr,password)

但是当我想查询数据时,我遇到了请求问题

gt.us <- gtrends("USA", geo="US", start_date="2004-01-01", end_date="2004-01-30")
  

错误:搜索量不足。请更改您的搜索字词。   另外:警告信息:   在request_GET(x,url,...)中:已消失(HTTP 410)。

有人可以帮帮我吗?

1 个答案:

答案 0 :(得分:1)

获取gtrendsR 2.0.0:

devtools::install_github('PMassicotte/gtrendsR')

library(gtrendsR)
# do not need to log in anymore
# syntax change!
gt.us <- gtrends("USA", geo="US", time = "2004-01-01 2004-01-30")

见Philippe Massicotte answer to this issue