-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #140 from andrewpbray/develop
Develop -> master
- Loading branch information
Showing
251 changed files
with
5,684 additions
and
9,075 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ | |
.Ruserdata | ||
*.Rproj | ||
.DS_Store | ||
.httr-oauth |
File renamed without changes.
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 |
---|---|---|
@@ -1,34 +1,41 @@ | ||
# Contributing | ||
|
||
Contributions to the `infer` whether in the form of bug fixes, issue reports, new code or documentation improvement | ||
are encouraged and welcome. We welcome novices who may have never contributed to a package before as well as friendly | ||
veterans looking to help us improve the package for users. | ||
Contributions to the `infer` whether in the form of bug fixes, issue reports, new | ||
code or documentation improvements are encouraged and welcome. We welcome novices | ||
who may have never contributed to a package before as well as friendly | ||
veterans looking to help us improve the package for users. We are eager to include | ||
and accepting of contributions from everyone that meets our [code of conduct](CONDUCT.md) | ||
guidelines. | ||
|
||
Please use the GitHub issues. For any pull request, please link to or open a corresponding issue | ||
in GitHub issues. Please ensure that you have notifications turned on and respond to questions, comments or | ||
needed changes promptly. | ||
Please use the GitHub issues. For any pull request, please link to or open a | ||
corresponding issue in GitHub issues. Please ensure that you have notifications | ||
turned on and respond to questions, comments or needed changes promptly. | ||
|
||
## Tests | ||
|
||
`infer` uses `testthat` for testing. Please try to provide 100% test coverage for any submitted code and always check | ||
that existing tests continue to pass. If you are a beginner and need help with writing a test, mention this | ||
`infer` uses `testthat` for testing. Please try to provide 100% test coverage | ||
for any submitted code and always check that existing tests continue to pass. | ||
If you are a beginner and need help with writing a test, mention this | ||
in the issue and we will try to help. | ||
|
||
It's also helpful to run `goodpractice::gp()` to ensure that lines of code are not over 80 columns and that all lines of code have tests written. Please do so prior to submitting any pull request and fix any suggestions from there. | ||
It's also helpful to run `goodpractice::gp()` to ensure that lines of code are | ||
not over 80 columns and that all lines of code have tests written. Please do so | ||
prior to submitting any pull request and fix any suggestions from there. | ||
Reach out to us if you need any assistance there too. | ||
|
||
## Pull requests | ||
|
||
Pull requests should be against the `develop` branch NOT the `master` branch. You can set this when creating | ||
your pull request. Please make a separately named branch to submit. Keep each branch for a complete specific | ||
issue. | ||
Pull requests should be against the `develop` branch NOT the `master` branch. | ||
You can set this when creating your pull request. Please make a separately | ||
named branch to submit. Keep each branch for a complete specific issue. | ||
|
||
## Code style | ||
|
||
Please use snake case (such as `rep_sample_n`) for function names. Besides that, in general follow the | ||
[tidyverse style](http://style.tidyverse.org/) style for R. | ||
Please use snake case (such as `rep_sample_n`) for function names. | ||
Besides that, in general follow the | ||
[tidyverse style](http://style.tidyverse.org/) for R. | ||
|
||
## Code of Conduct | ||
|
||
When contributing to the `infer` package you must follow the code of | ||
conduct defined in [CONDUCT.md](CONDUCT.md) | ||
conduct defined in [CONDUCT](CONDUCT.md). |
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,7 +1,7 @@ | ||
Package: infer | ||
Type: Package | ||
Title: Tidy Statistical Inference | ||
Version: 0.2.0 | ||
Version: 0.3.0 | ||
Authors@R: c( | ||
person("Andrew", "Bray", email = "[email protected]", role = c("aut", "cre")), | ||
person("Chester", "Ismay", email = "[email protected]", role = "aut"), | ||
|
@@ -12,7 +12,8 @@ Authors@R: c( | |
person("Johanna", "Hardin", email = "[email protected]", role = "ctb"), | ||
person("Albert", "Kim", email = "[email protected]", role = "ctb"), | ||
person("Neal", "Fultz", email = "[email protected]", role = "ctb"), | ||
person("Doug", "Friedman", email = "[email protected]", role = "ctb")) | ||
person("Doug", "Friedman", email = "[email protected]", role = "ctb"), | ||
person("Richie", "Cotton", email = "[email protected]", role = "ctb")) | ||
Description: The objective of this package is to perform inference using an expressive statistical grammar that coheres with the tidy design framework. | ||
License: CC0 | ||
Encoding: UTF-8 | ||
|
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.