I am trying to retrieve a Google Trends query and I get the following error:
Error in gtrends(keyword = "hotel zypern", geo = "DE", time = "2004-01-01 2016-04-30", :
unused argument (alist())
The code I have written in R:
ger1<-gtrends(
keyword = "hotel zypern",
geo = "DE",
time ="2004-01-01 2016-04-30",
gprop = c("web", "news", "images", "froogle", "youtube"),
category = "0",
hl = "de",
low_search_volume = FALSE,
cookie_url = "http://trends.google.com/Cookies/NID",
tz = "Europe/Berlin",
onlyInterest = "FALSE",
)
I have tried including the "..." as other posts suggested, and revised the arguments of the function but I don't find anywhere that I should include such an argument.
Thank you in advance!!