作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我一直在尝试从 Gtrends 中提取 Covid 数据,但出现以下错误:
我在 R 中使用 grendsR 包。
# google search for covid (week started XX - SUN): https://trends.google.com/trends/explore?geo=US-HI&q=covid
search_covid <- gtrends(keyword = 'covid', geo = 'US-HI', time = 'today+5-y') %>%
pluck("interest_over_time") %>%
as_tibble() %>%
select(date, hits) %>%
rename(search_covid = hits) %>%
mutate(date = ymd(date) + days(1),
search_covid = as.numeric(search_covid %>% ifelse(. == '<1', 0, .)))
search_covid %>% ts_plot()
search_covid %>% tail()
我收到此错误:interest_over_time(widget, comparison_item, tz) 错误:状态码不是200,返回状态码:401
如有任何帮助,我们将不胜感激。
最佳答案
将 gtrendsR 包重新加载到较新的版本似乎已经解决了这个问题:
install.packages("readr")
install.packages("colorspace")
install.packages("vctrs")
install.packages("gtrendsR")
从这里找到的解决方案:How to load google trends package in R
关于html - gtrends 错误版本 2 : Error in interest_over_time(widget, comparison_item, tz) : Status code was not 200. 返回状态码:401,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72496826/
我一直在尝试从 Gtrends 中提取 Covid 数据,但出现以下错误: 我在 R 中使用 grendsR 包。 # google search for covid (week started XX
我是一名优秀的程序员,十分优秀!