-
-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
225 changed files
with
4,117 additions
and
26,481 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# How to contribute to googleAnalyticsR | ||
|
||
Contributions of any sort are encouraged and very welcome. | ||
|
||
## Bugs | ||
|
||
If you find anything that looks like a bug, please raise a GitHub issue. One issue per thread please. | ||
|
||
Bugs are much more likely to be fixed if you have a reproduceable example, so please include in the issue. | ||
|
||
Please also report your `sessionInfo()` to check what versions of `googleAnalyticsR` and `googleAuthR` you are running, and run your example with the `option(googleAuthR.verbose = 1)` that will output more console feedback that will help debug. | ||
|
||
## Pull requests | ||
|
||
Any pull requests are welcome, however small, so typos, documentation improvements etc. | ||
|
||
If you are contributing code, then please also include: | ||
|
||
* An entry in the `NEWS.md` that details what has changed | ||
* Add yourself as a contributor to the `DESCRIPTION` | ||
* If you can, create a test using `testthat` which will run through your code. The tests assume you have a authentication file saved at the location indicated by the return of `Sys.getenv("GA_AUTH_FILE")`. If you don't know how to use `testthat`, an example file in the tests directory will do, which will be converted. | ||
* Include an example on how to use the function in the examples section | ||
* Try to stick to the same coding style as the rest of the package | ||
* Add some documentation on how to use the functions. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,37 @@ | ||
Package: googleAnalyticsR | ||
Type: Package | ||
Version: 0.4.2 | ||
Version: 0.5.0 | ||
Title: Google Analytics API into R | ||
Description: R library for interacting with the Google Analytics | ||
Reporting API v3 and v4. | ||
Description: Interact with the Google Analytics | ||
APIs <https://developers.google.com/analytics/>, including | ||
the Core Reporting API (v3 and v4), Management API, and Multi-Channel | ||
Funnel API. | ||
Authors@R: c(person("Mark", "Edmondson", email = "[email protected]", | ||
role = c("aut", "cre")), | ||
person(given = "Artem", family = "Klevtsov", | ||
email = "[email protected]", role = "ctb"), | ||
person("Johann", "deBoer", email = "[email protected]", role = "ctb"), | ||
person("David", "Watkins", email = "[email protected]", role = "ctb"), | ||
person("Olivia", "Brode-Roger", email = "[email protected]", role = "ctb"), | ||
person("Jas", "Sohi", email = "[email protected]", role = "ctb")) | ||
person("Jas", "Sohi", email = "[email protected]", role = "ctb"), | ||
person("Zoran", "Selinger", email = "[email protected]", role = "ctb")) | ||
URL: http://code.markedmondson.me/googleAnalyticsR/ | ||
BugReports: https://github.com/MarkEdmondson1234/googleAnalyticsR/issues | ||
Depends: | ||
R (>= 3.2.0) | ||
Imports: | ||
assertthat (>= 0.2.0), | ||
dplyr (>= 0.7.0), | ||
googleAuthR (>= 0.5.1), | ||
googleAuthR (>= 0.6.2), | ||
httr (>= 1.3.1), | ||
magrittr (>= 1.5), | ||
memoise, | ||
progress, | ||
purrr (>= 0.2.2), | ||
rlang (>= 0.1.0), | ||
tidyr (>= 0.6.3), | ||
utils | ||
utils, | ||
methods | ||
Suggests: | ||
bigQueryR (>= 0.3.1), | ||
covr, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.