Renv is an R package which allows for the management of local packages and package versions in a project by project basis, rather than having one universal version for each R installation.
This package does not fully manage versions and dependencies like groundhog does, but rather takes an approach of simply preserving the current project environment. See above link for further details.
Questions to answer:
Does renv provide enough control over packages to prevent the dashboard from breaking well into the future?
Can it be reasonably implemented such that it doesn't make more sense to Dockerize and change publishing services?
Can the process of using renv to manage packages be effectively managed with multiple users/publishers?
https://rstudio.github.io/renv/articles/renv.html
Renv is an R package which allows for the management of local packages and package versions in a project by project basis, rather than having one universal version for each R installation.
This package does not fully manage versions and dependencies like groundhog does, but rather takes an approach of simply preserving the current project environment. See above link for further details.
Questions to answer: