gtrendsr

Number of redirects hit maximum amount | gconnect() in gtrendsR package

夙愿已清 提交于 2020-01-03 06:03:29
问题 I am trying to get data using gtrendsR package. But I am stuck at the connection. library('gtrendsR') session <- gconnect("username@gmail.com", "mypass") I know google recognize my email address and my password, but I think the problem is with R because I am getting the following error: Error in curl::curl_fetch_memory(url, handle = handle) : Number of redirects hit maximum amount However, I am not sure. Has anyone encountered this problem before and knows how to solve it? 回答1: library(

Issues with gtrendsR queries

我只是一个虾纸丫 提交于 2019-12-12 11:25:21
问题 I am receiving two errors on gTrendsR searches. I attempted to use the package with both the CRAN download and devel version from https://github.com/PMassicotte/gtrendsR. library(gtrendsR) gconnect(usr, psw, verbose=TRUE) #Google login successful! sport_trend <- gtrends(c("nhl", "nba", "nfl")) #Error in names(trend) <- make.names(paste(kw, geo)) : # 'names' attribute [3] must be the same length as the vector [0] gtrends("Kim Kardashian") #Error: Not enough search volume. Please change your

Google Trends in R, error after few tries

好久不见. 提交于 2019-12-11 02:12:01
问题 I know similar questions have been asked before but I did not find what I was looking for. I'm using R to pull google trend data library(gtrendsR) user <- "XXXXX@gmail.com" psw <- "xxxxxxxxx" gconnect(user, psw) trend <- gtrends(c("abc","xyz","pqr","ist","def"), start_date = as.Date("2015-11-01"), end_date = as.Date("2015-12-31"), #res = "1h", geo = "US", cat = "0-18") trend$trend We can only search for 5 terms at a time using this method, so wrote a function and which takes a bunch of terms

Login issue with gconnect() in gtrendsR package

被刻印的时光 ゝ 提交于 2019-12-09 04:20:03
问题 I am trying to log into my Google account in R using gconnect() in the gtrendsR package, but am running into issues. I have been doing research using Google Trends data for the last month, and have never had a problem with this. Please let me know if you have any thoughts. I had Google Support take a look at my account to see if there were any holds or something, but nothing showed up. Also tried logging in through another account which didnt work.. This is what I am trying to do: usr <- 'my

Login issue with gconnect() in gtrendsR package

我怕爱的太早我们不能终老 提交于 2019-12-02 23:02:17
I am trying to log into my Google account in R using gconnect() in the gtrendsR package, but am running into issues. I have been doing research using Google Trends data for the last month, and have never had a problem with this. Please let me know if you have any thoughts. I had Google Support take a look at my account to see if there were any holds or something, but nothing showed up. Also tried logging in through another account which didnt work.. This is what I am trying to do: usr <- 'my_username@gmail.com' psw <- 'my_password' gconnect(usr, psw) And then I am returned with the following