add renv to project
This commit is contained in:
parent
ddb00098fc
commit
f6c4a372e1
5 changed files with 5075 additions and 0 deletions
9
posts/2024-09-27_coffee_taste_test/taste_test.R
Normal file
9
posts/2024-09-27_coffee_taste_test/taste_test.R
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
# ---- Clean Environment ----
|
||||||
|
rm(list = ls())
|
||||||
|
|
||||||
|
# Load Packages
|
||||||
|
|
||||||
|
box::use(
|
||||||
|
|
||||||
|
)
|
||||||
|
|
7
renv/.gitignore
vendored
Normal file
7
renv/.gitignore
vendored
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
library/
|
||||||
|
local/
|
||||||
|
cellar/
|
||||||
|
lock/
|
||||||
|
python/
|
||||||
|
sandbox/
|
||||||
|
staging/
|
1220
renv/activate.R
Normal file
1220
renv/activate.R
Normal file
File diff suppressed because it is too large
Load diff
19
renv/settings.json
Normal file
19
renv/settings.json
Normal 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
|
||||||
|
}
|
Loading…
Reference in a new issue