https://github.com/astrazeneca/roo
A package and environment manager for R
https://github.com/astrazeneca/roo
Last synced: about 1 year ago
JSON representation
A package and environment manager for R
- Host: GitHub
- URL: https://github.com/astrazeneca/roo
- Owner: AstraZeneca
- License: apache-2.0
- Created: 2021-09-15T15:15:06.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-03-08T11:31:20.000Z (over 2 years ago)
- Last Synced: 2025-05-01T19:49:03.447Z (about 1 year ago)
- Language: Python
- Size: 354 KB
- Stars: 15
- Watchers: 1
- Forks: 1
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Authors: AUTHORS.md
Awesome Lists containing this project
README
# Roo - manages environments and dependencies in R
[](https://img.shields.io/badge/Maturity%20Level-Under%20Development-orange)
# Description
Roo is a python program that handles R dependencies and R environments,
ensuring environment reproducibility that satisfy dependency constraints.
If you are familiar with python poetry or pip it aims at being the same.
While apparently similar to packrat or renv, Roo is way more powerful.
As a data scientist using e.g. RStudio you are unlikely to benefit from Roo,
but if you need to create production R code, it's a much safer choice to
define a consistent and reliable environment of dependencies. It also provides
functionalities that helps in maintaining different environments at the same time.
# Installation
Roo is written in python and requires python 3.8 or above.
It runs on any platform, and it can be installed from pypi with:
pip install roo
Dependencies will be installed automatically.
# Documentation
- [Rationale](docs/rationale.md)
- [Basic Usage](docs/usage.md)
- [Advanced Usage](docs/advanced.md)
- [Troubleshooting](docs/troubleshooting.md)