Contributing
Source:.github/CONTRIBUTING.md
If you have a dataset that you think would be good for this package, feel free to contribute it. Datasets should include a source citation and be available under an open license.
It is much preferred that you contribute the dataset via a pull request. To add a dataset:
- Add the raw data to
data-raw
and an R script to load and save it as an R data object todata-raw/scripts
. The.rda
file should be saved todata/
. Seedata-raw/scripts/sarna.R
as a model. - Add the documentation using
devtools::document()
. Be sure to include a citation. - Run
R-CMD-check
usingdevtools::check()
.