⚠️There's a newer version (1.5.1) of this package. Take me there.

gtrendsR

gtrendsR provides an interface for retrieving and displaying Google Trends information.

Trends (number of hits) over time as well as geographic representation of the results can be displayed.

Example

In this simple example, trends for keywords nhl, nba and nfl are retrieved and then plotted from R.

library(gtrendsR)
usr <- "user@gmail.com"  # alternatively store as options() or env.var
psw <- "password"        # idem
gconnect(usr, psw)       # stores handle in environment
sport_trend <- gtrends(c("nhl", "nba", "nfl"))
plot(sport_trend)        # data set also included in package

It is also possible to plot geographical data using googleVis as follow.

plot(sport_trend, type = "geo", which = 5)
plot(sport_trend, type = "geo", which = 6)
plot(sport_trend, type = "geo", which = 7)

Should you have trouble connecting, and also use two-factor authentication on your Google Account, then consider creating another Google account (without two-factor authentication) which should allow automated (i.e. programmatic) connection here.

Installation

Since release 1.3.0, the package is on CRAN and can be installed via

install.packages("gtrendsR")

Pre-release versions can be install directly from this repository via

if (!require("devtools")) install.packages("devtools")
devtools::install_github("PMassicotte/gtrendsR")

Authors

Philippe Massicotte and Dirk Eddelbuettel

License

GPL (>= 2)

Copy Link

Version

Down Chevron

Install

install.packages('gtrendsR')

Monthly Downloads

3,828

Version

1.3.4

License

GPL (>= 2)

Issues

Pull Requests

Stars

Forks

Last Published

July 30th, 2016

Functions in gtrendsR (1.3.4)