Releases will be numbered with the following semantic versioning format:
<major>.<minor>.<patch>
And constructed with the following guidelines:
Breaking backward compatibility bumps the major (and resets the minor and patch)
New additions without breaking backward compatibility bumps the minor (and resets the patch)
Bug fixes and misc changes bumps the patch
BUGS
gtend_scraper
used the following approach to deal with multi-word terms:
phrases <- gsub("\\s+", "\\+", gsub("[-,]", " ", phrases))
when it should
have been enclosed with quotes:
phrases <- sprintf("\"%s\"", gsub("[-,]", " ", phrases))
as seen:
https://support.google.com/trends/answer/4359582?hl=en&ref_topic=4365599
Spotted by David Serfass.The first installation of the gtrend package
Package designed to wraps the functionlity of the GTrendsR package into convenient wrappers that grab and format trend data from Google.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.