start_top:end_top 中出现错误:检查没有 NA 和 NaN 后出现 NA/NaN 参数

问题描述 投票:0回答:1
for (i in 1:5) {
  trends <- gtrends(keyword = name_gruppen_cleaned[[i]],
                time = zeit_gruppen[[i]],
                geo = "US",
                gprop = "web",
                hl = "en-US",
                category = 0,
                compared_breakdown = FALSE,
                low_search_volume = FALSE,
                cookie_url = "http://trends.google.com/Cookies/NID",
                tz = 0,
                onlyInterest = FALSE)

  print(trends) 
}

当我运行此代码时,R 返回此“start_top:end_top 中的错误:NA/NaN 参数”。我已经用

anyNA(unlist(name_gruppen_cleaned))
any(is.nan(unlist(name_gruppen_cleaned)))
检查过 name_gruppen_cleaned 中是否有 NA 或 NaN,但没有。

有人知道我能做什么吗?

r gtrendsr
1个回答
0
投票

我从今天开始遇到了同样的问题——昨天一切都很好。然后我意识到这个问题在这次提交中得到了解决:https://github.com/PMassicotte/gtrendsR/commit/849fbf780768e69faa3b1dbd373dd55b38acdcbd。要修复此问题,请安装开发版本而不是 CRAN 版本,问题应该得到解决。

devtools::install_github("PMassicotte/gtrendsR")
© www.soinside.com 2019 - 2024. All rights reserved.