First of all, thanks for taking your time to contribute! You could contribute to this project by:
Filing a bug report or feature request in an issue. Suggesting a change via a pull request.
To file an issue about a possible bug, please try to include:
To suggest a change via pull requests, please:
Please try to follow the coding style in this repo:
1. One line should be no longer than 80 characters, you can get ideas of how to introduce newlines from Python's PEP8 standard.
2. For each function, include documentation of the function and input variables with R-oxygen compatible format.
3. One function should not be longer than 30 lines (otherwise create two functions).
4. Use CamelCase
rather than under_score
. Use meaningful variable names, e.g.: chrVec
rather than vec1
. I found it helpful to include the type of variables as suffix of the variable. For example, chrVec
is better than chr
.
5. When using external functions, show the origin of the function. For example, use hash::hash()
rather than hash()
.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.