RDBEScore
provides functions to work with the Regional DataBase and Estimation System (RDBES).
It is implemented as an R package and available on GitHub
RDBEScore can be installed from GitHub using the install_github
command from the remotes package:
library(remotes)
install_github("ices-tools-dev/RDBEScore", build_vignettes = TRUE)
For a summary of the package see the following Vignettes:
browseVignettes(package = "RDBEScore")
-
Regional Database & Estimation System: https://sboxrdbes.ices.dk/
-
Working Group on Governance of the Regional Database & Estimation System: https://www.ices.dk/community/groups/Pages/WGRDBESGOV.aspx
-
Working Group on Estimation with the RDBES data model (WGRDBES-EST): https://github.com/ices-tools-dev/RDBEScore/blob/main/WGRDBES-EST/references/WGRDBES-EST%20Resolutions.pdf
-
see also: https://github.com/ices-tools-dev/RDBEScore/tree/main/WGRDBES-EST/references
RDBEScore is developed openly on GitHub.
Feel free to open an issue there if you encounter problems or have suggestions for future versions.
The current development version can be installed using:
library(remotes)
install_github("ices-tools-dev/RDBEScore@dev")
For adhering to package styling guides it is advisable to use precommit checks while developing. In order to run lintr and styler (etc) before committing code, follow the instructions at the following address: https://github.com/lorenzwalthert/precommit#installation
- Check that python3 is installed and install if necessary
- Run pip install
pip3 install pre-commit --user
- Install R precommit package
install.packages("precommit")
- Run at the root of the git repository.
library(precommit) precommit::use_precommit()
- Running git commit should run the various checks automatically. See the config file for all the checks.