All Projects → PMassicotte → Gtrendsr

PMassicotte / Gtrendsr

R functions to perform and display Google Trends queries

Programming Languages

r
7636 projects

Labels

Projects that are alternatives of or similar to Gtrendsr

Swiftybot
How to create a Telegram, Facebook Messenger, and Google Assistant bot with Swift using Vapor on Ubuntu / macOS.
Stars: ✭ 247 (-6.08%)
Mutual labels:  google
How To Prepare For Google Interview Swe Sre
This repository includes resources which are more than sufficient to prepare for google interview if you are applying for a software engineer position or a site reliability engineer position
Stars: ✭ 251 (-4.56%)
Mutual labels:  google
Microservices Traffic Management Using Istio
Istio is an open platform that provides a uniform way to connect, manage, and secure microservices. In this code we show how we can enable your microservices with advanced traffic management, routing and tracing capabilities leveraging Istio
Stars: ✭ 257 (-2.28%)
Mutual labels:  google
Alfred Web Search Suggest
Alfred search suggest workflow for various popular websites.
Stars: ✭ 249 (-5.32%)
Mutual labels:  google
Interview Techdev Guide
This repository contains curated technical interview questions by fn+geeks community
Stars: ✭ 252 (-4.18%)
Mutual labels:  google
react-google-static
🌍 A React wrapper for Google Static Maps API.
Stars: ✭ 37 (-85.93%)
Mutual labels:  google
Hackathon Starter Kit
A Node-Typescript/Express Boilerplate with Authentication(Local, Github, Facebook, Twitter, Google, Dropbox, LinkedIn, Discord, Slack), Authorization, and CRUD functionality + PWA Support!
Stars: ✭ 242 (-7.98%)
Mutual labels:  google
Google Autocomplete
Google Autocomplete Vue Componet
Stars: ✭ 262 (-0.38%)
Mutual labels:  google
Goldenpassport
A native implementation of Google Authenticator for Mac based on Swift
Stars: ✭ 251 (-4.56%)
Mutual labels:  google
Gcal Cli
Google Calendar command line tool for Node.js
Stars: ✭ 255 (-3.04%)
Mutual labels:  google
Node Google Play
Get details and download apps from https://play.google.com by emulating an Android (Nexus 5X) device by default. For a rust version of this library check out https://github.com/dweinstein/rs-google-play
Stars: ✭ 247 (-6.08%)
Mutual labels:  google
Alfred Searchio
Alfred workflow to auto-suggest search results from multiple search engines and languages.
Stars: ✭ 250 (-4.94%)
Mutual labels:  google
Google-rank-tracker
SEO: Python script + shell script and cronjob to check ranks on a daily basis
Stars: ✭ 124 (-52.85%)
Mutual labels:  google
Magic google
Google search results crawler, get google search results that you need
Stars: ✭ 247 (-6.08%)
Mutual labels:  google
Realtime object detection
Plug and Play Real-Time Object Detection App with Tensorflow and OpenCV. No Bugs No Worries. Enjoy!
Stars: ✭ 260 (-1.14%)
Mutual labels:  google
Mentornet
Code for MentorNet: Learning Data-Driven Curriculum for Very Deep Neural Networks
Stars: ✭ 245 (-6.84%)
Mutual labels:  google
Phobos
This tool written in Python3 allows you to download any movie easily thanks to Google Dorks and Google Drive!
Stars: ✭ 59 (-77.57%)
Mutual labels:  google
Google Profanity Words
Full List of Bad Words and Top Swear Words Banned by Google as they closed it
Stars: ✭ 262 (-0.38%)
Mutual labels:  google
Laravel Robots Middleware
Enable or disable the indexing of your app
Stars: ✭ 259 (-1.52%)
Mutual labels:  google
Checkiptools
CheckIPTools 扫描谷歌IP以及实用IP转换小工具
Stars: ✭ 253 (-3.8%)
Mutual labels:  google

gtrendsR

Travis-CI Build Status AppVeyor Build Status GitHub Actions Build Status License CRAN Downloads

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 are retrieved for Canada and USA and then plotted from R.

library(gtrendsR)

res <- gtrends(c("nhl", "nba"), geo = c("CA", "US"))
plot(res)

Installation

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

install.packages("gtrendsR")

Release-candidate packages are available in the ghrr drat repository and can installed via

install.packages("drat")       # easier repo access + creation
drat:::add("ghrr")             # make it known
install.packages("gtrendsR")   # install it

Development version (which may be less stable) can be installed directly from this repository via

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

Using gtrendsR behind a PROXY.

If gtrendsR should be used behind a proxy, especially with NTLM authentication mode, you need to set the proxy parameters using "setHandleParameters" function

Example

library(gtrendsR)

setHandleParameters(user = "xxxx", password = "*******", domain = "mydomain", proxyhost = "10.111.124.113", proxyport = 8080)
res <- gtrends(c("nhl", "nba"), geo = c("CA", "US"))

Authors

Philippe Massicotte and Dirk Eddelbuettel

License

GPL (>= 2)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].