我正在使用gtrendsR库处理一些Google趋势数据。以前,我使用过time =“ all”选项来获取Google趋势历史记录开头的日期。这个季度对我来说似乎不起作用。有人知道该功能是否不再受支持吗?我可以使用帮助文件中提供的不同时间格式成功获取日期,但它们似乎并没有回到Google趋势历史记录的开始(2004年)。
library(gtrendsR)
test <- gtrends(keyword = c("cnn"),
geo = c("US"), time = "all",
gprop = c("web"),
category = 0, hl = "en-US", low_search_volume = FALSE,
cookie_url = "http://trends.google.com/Cookies/NID")
plot(test)
test <- as.data.frame(test[["interest_over_time"]])
test2 <- gtrends(keyword = c("cnn"),
geo = c("US"), time = "today+5-y",
gprop = c("web"),
category = 0, hl = "en-US", low_search_volume = FALSE,
cookie_url = "http://trends.google.com/Cookies/NID")
plot(test2)
test2 <- as.data.frame(test2[["interest_over_time"]])
有人知道为什么这种方法不再有效吗?还是time =“ all”选项的解决方法?