Visit tidyrisk.org for more about Tidyrisk.
An all-in-one setup for running evaluator. Based upon the rocker RStudio image, this allows users to have a known working installation of Evaluator and all of its dependencies without having to manage a local installation.
- Install Docker (free community editions for MacOS, Windows, Linux, and several cloud providers are all available via the Docker Store).
docker run -d -p 8787:8787 tidyrisk/evaluator:latest
.- Navigate with a local web browser to http://localhost:8787.
- Login to RStudio with the user
rstudio
and the passwordrstudio
.
docker run --rm -v "$(pwd)/evaluator":/data tidyrisk/evaluator:latest create_templates
.- Edit the templates in the
evaluator/inputs
subdirectory on your host system. docker run --rm -v "$(pwd)/evaluator":/data tidyrisk/evaluator:latest run_analysis
.- Consume the reports and analysis in the
evaluator/results
directory on your host system.
You can share data between your local host and the evaluator instance by
mounting volumes to the container's /home/rstudio
directory.
To store data in a pre-existing data
subdirectory in your host's current
working directory, use the following command:
docker run -d -p 8787:8787 -v $(pwd)/data:/home/rstudio tidyrisk/evaluator:latest
- tidyrisk - For information on the tidyrisk family.
- Rocker Wiki - For additional options on running and configuring the Dockerized RStudio instance.
NoLD tests are executed using the Rdevel instance via:
RD CMD build .
RD CMD check --as-cran evaluator*
This project is governed by a Code of Conduct. By participating in this project you agree to abide by these terms.
The MIT License applies.