To contribute code to this repository, please use the following process: - Submit an issue describing the problem to fix or enhancement to add - Fork the repository - Make your changes in a new branch:
```
git checkout -b my-new-feature master
```
Push your new branch to GitHub:
git push origin my-new-feature
Submit a pull request
Every commit should have a commit message that follows these rules:
This commit message style was popularized by Tim Pope; you can read more about it here.
To keep the coding style uniform, please follow the following style rules:
Here is an example demonstrating the above rules:
example_function <- function(x = 2) {
if ( x < 1 ) {
return(x)
}
return(log(x) * 2 + 1)
}
These contributing guidelines are also used by RcppDist
, gpmlr
, and gpirt
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.