Contributions are R-centric at the moment.
- There are two issue templates: 1) Bug report and 2) Feature request. Their use should be self-explanatory. If your issue does not fit in either of these categories, simply open a blank issue.
- As explained in the issue template, bug reports should include a reproducible example. If you use the
reprexpackage, this will include the sessionInfo for your R session.
When making pull requests, please observe the following:
- Do not use this repository to host data. Rather, create a script which will harvest the data from a publicly available source.
- Stick with the current
dataandedafolder split. That is, scripts indataare for harvesting data and scripts inedawill explore data which has been harvested. - There should be a one-to-one relationship between the script and the source. That is, any necessary processing after the data has been gathered should be in the same script used to source the data.
- Each data gathering script should save its output as an
.rdafile with the same name as the script. - Try to keep the technology stack straightforward. Base R,
tidyverseanddata.tableare fine. Please avoid obscure data wrangling and analysis packages.