I am running the following code in R 3.0.1 (WIN 64 bit). GTrendsR version is 1.2.1. This package is designed to access GOOGLE Trends from R to download Google search frequencies.
install.packages("devtools")
library("devtools")
install_bitbucket("GTrendsR", "persican")
library("GTrendsR")
usr = "googleusername "
psw = "password "
ch <- gconnect(usr, psw,verbose=TRUE)
trends <- gtrends(ch, query = "facebook",geo = "CA", cat="0")
Bu after the last line execution, I only get
Error: Not enough search volume. Please change your search terms.
This example is supposed to get the frequency of search queries "facebook" in Canada, so they do not have enough space to search for the keyword "facebook". Your advice is much appreciated
source
share