add renv to project

This commit is contained in:
Kyle Belanger 2024-09-27 14:54:08 -04:00
parent ddb00098fc
commit f6c4a372e1
5 changed files with 5075 additions and 0 deletions

View file

@ -0,0 +1,9 @@
# ---- Clean Environment ----
rm(list = ls())
# Load Packages
box::use(
)

3820
renv.lock Normal file

File diff suppressed because it is too large Load diff

7
renv/.gitignore vendored Normal file
View file

@ -0,0 +1,7 @@
library/
local/
cellar/
lock/
python/
sandbox/
staging/

1220
renv/activate.R Normal file

File diff suppressed because it is too large Load diff

19
renv/settings.json Normal file
View file

@ -0,0 +1,19 @@
{
"bioconductor.version": null,
"external.libraries": [],
"ignored.packages": [],
"package.dependency.fields": [
"Imports",
"Depends",
"LinkingTo"
],
"ppm.enabled": null,
"ppm.ignored.urls": [],
"r.version": null,
"snapshot.type": "implicit",
"use.cache": true,
"vcs.ignore.cellar": true,
"vcs.ignore.library": true,
"vcs.ignore.local": true,
"vcs.manage.ignores": true
}