Skip to content

Commit efbd11c

Browse files
committedApr 26, 2024
Initial commit
0 parents  commit efbd11c

7 files changed

+1289
-0
lines changed
 

‎.Rprofile

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
source("renv/activate.R")

‎.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.Rproj.user
2+
.Rhistory
3+
.Rdata
4+
.httr-oauth
5+
.DS_Store
6+
.quarto
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
Version: 1.0
2+
3+
RestoreWorkspace: Default
4+
SaveWorkspace: Default
5+
AlwaysSaveHistory: Default
6+
7+
EnableCodeIndexing: Yes
8+
UseSpacesForTab: Yes
9+
NumSpacesForTab: 2
10+
Encoding: UTF-8
11+
12+
RnwWeave: Sweave
13+
LaTeX: pdfLaTeX

‎renv.lock

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"R": {
3+
"Version": "4.4.0",
4+
"Repositories": [
5+
{
6+
"Name": "CRAN",
7+
"URL": "https://packagemanager.posit.co/cran/latest"
8+
}
9+
]
10+
},
11+
"Packages": {
12+
"renv": {
13+
"Package": "renv",
14+
"Version": "1.0.7",
15+
"Source": "Repository",
16+
"Repository": "CRAN",
17+
"Requirements": [
18+
"utils"
19+
],
20+
"Hash": "397b7b2a265bc5a7a06852524dabae20"
21+
}
22+
}
23+
}

‎renv/.gitignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
library/
2+
local/
3+
cellar/
4+
lock/
5+
python/
6+
sandbox/
7+
staging/

‎renv/activate.R

+1,220
Large diffs are not rendered by default.

‎renv/settings.json

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"bioconductor.version": null,
3+
"external.libraries": [],
4+
"ignored.packages": [],
5+
"package.dependency.fields": [
6+
"Imports",
7+
"Depends",
8+
"LinkingTo"
9+
],
10+
"ppm.enabled": null,
11+
"ppm.ignored.urls": [],
12+
"r.version": null,
13+
"snapshot.type": "implicit",
14+
"use.cache": true,
15+
"vcs.ignore.cellar": true,
16+
"vcs.ignore.library": true,
17+
"vcs.ignore.local": true,
18+
"vcs.manage.ignores": true
19+
}

0 commit comments

Comments
 (0)
Please sign in to comment.