Spaces:
Sleeping
Sleeping
Add application file
Browse files- Dockerfile +30 -0
- plumber.R +19 -0
- vetiver_renv.lock +1512 -0
Dockerfile
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Generated by the vetiver package; edit with care
|
2 |
+
|
3 |
+
FROM rocker/r-ver:4.0.5
|
4 |
+
# Create a non-root user to run the application
|
5 |
+
RUN useradd --create-home appuser
|
6 |
+
|
7 |
+
ENV RENV_CONFIG_REPOS_OVERRIDE https://packagemanager.rstudio.com/cran/latest
|
8 |
+
ENV HOME=/home/appuser
|
9 |
+
WORKDIR $HOME
|
10 |
+
|
11 |
+
RUN apt-get update -qq && apt-get install -y --no-install-recommends \
|
12 |
+
libcurl4-openssl-dev \
|
13 |
+
libicu-dev \
|
14 |
+
libsodium-dev \
|
15 |
+
libssl-dev \
|
16 |
+
make \
|
17 |
+
zlib1g-dev \
|
18 |
+
&& apt-get clean
|
19 |
+
|
20 |
+
COPY vetiver_renv.lock renv.lock
|
21 |
+
# Create the .cache directory and give appuser permission to write to it
|
22 |
+
RUN mkdir -p /home/appuser/.cache && chown -R appuser:appuser /home/appuser/.cache
|
23 |
+
# Create the .cache/pins/url directory and give appuser permission to write to it
|
24 |
+
RUN mkdir -p /home/appuser/.cache/pins/url && chown -R appuser:appuser /home/appuser/.cache/pins/url
|
25 |
+
|
26 |
+
RUN Rscript -e "install.packages('renv')"
|
27 |
+
RUN Rscript -e "renv::restore()"
|
28 |
+
COPY plumber.R /opt/ml/plumber.R
|
29 |
+
EXPOSE 7860
|
30 |
+
ENTRYPOINT ["R", "-e", "pr <- plumber::plumb('/opt/ml/plumber.R'); pr$run(host = '0.0.0.0', port = 7860)"]
|
plumber.R
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Generated by the vetiver package; edit with care
|
2 |
+
|
3 |
+
library(pins)
|
4 |
+
library(plumber)
|
5 |
+
library(rapidoc)
|
6 |
+
library(vetiver)
|
7 |
+
|
8 |
+
# Packages needed to generate model predictions
|
9 |
+
if (FALSE) {
|
10 |
+
library(caret)
|
11 |
+
}
|
12 |
+
pin_loc <- pins:::github_raw("DimbyTa/r-mlops-vetiver-huggingFace/main/pins-r/_pins.yaml")
|
13 |
+
b <- board_url(pin_loc)
|
14 |
+
v <- vetiver_pin_read(b, "accident_model", version = "20231021T025821Z-51e08")
|
15 |
+
|
16 |
+
#* @plumber
|
17 |
+
function(pr) {
|
18 |
+
pr %>% vetiver_api(v)
|
19 |
+
}
|
vetiver_renv.lock
ADDED
@@ -0,0 +1,1512 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"R": {
|
3 |
+
"Version": "4.0.5",
|
4 |
+
"Repositories": [
|
5 |
+
{
|
6 |
+
"Name": "CRAN",
|
7 |
+
"URL": "http://cran.rstudio.com"
|
8 |
+
}
|
9 |
+
]
|
10 |
+
},
|
11 |
+
"Packages": {
|
12 |
+
"KernSmooth": {
|
13 |
+
"Package": "KernSmooth",
|
14 |
+
"Version": "2.23-21",
|
15 |
+
"Source": "Repository",
|
16 |
+
"Repository": "CRAN",
|
17 |
+
"Requirements": [
|
18 |
+
"R",
|
19 |
+
"stats"
|
20 |
+
],
|
21 |
+
"Hash": "6314fc110e09548ba889491db6ae67fb"
|
22 |
+
},
|
23 |
+
"MASS": {
|
24 |
+
"Package": "MASS",
|
25 |
+
"Version": "7.3-60",
|
26 |
+
"Source": "Repository",
|
27 |
+
"Repository": "CRAN",
|
28 |
+
"Requirements": [
|
29 |
+
"R",
|
30 |
+
"grDevices",
|
31 |
+
"graphics",
|
32 |
+
"methods",
|
33 |
+
"stats",
|
34 |
+
"utils"
|
35 |
+
],
|
36 |
+
"Hash": "a56a6365b3fa73293ea8d084be0d9bb0"
|
37 |
+
},
|
38 |
+
"Matrix": {
|
39 |
+
"Package": "Matrix",
|
40 |
+
"Version": "1.5-4.1",
|
41 |
+
"Source": "Repository",
|
42 |
+
"Repository": "CRAN",
|
43 |
+
"Requirements": [
|
44 |
+
"R",
|
45 |
+
"graphics",
|
46 |
+
"grid",
|
47 |
+
"lattice",
|
48 |
+
"methods",
|
49 |
+
"stats",
|
50 |
+
"utils"
|
51 |
+
],
|
52 |
+
"Hash": "38082d362d317745fb932e13956dccbb"
|
53 |
+
},
|
54 |
+
"ModelMetrics": {
|
55 |
+
"Package": "ModelMetrics",
|
56 |
+
"Version": "1.2.2.2",
|
57 |
+
"Source": "Repository",
|
58 |
+
"Repository": "CRAN",
|
59 |
+
"Requirements": [
|
60 |
+
"R",
|
61 |
+
"Rcpp",
|
62 |
+
"data.table"
|
63 |
+
],
|
64 |
+
"Hash": "40a55bd0b44719941d103291ac5e9d74"
|
65 |
+
},
|
66 |
+
"R6": {
|
67 |
+
"Package": "R6",
|
68 |
+
"Version": "2.5.1",
|
69 |
+
"Source": "Repository",
|
70 |
+
"Repository": "CRAN",
|
71 |
+
"Requirements": [
|
72 |
+
"R"
|
73 |
+
],
|
74 |
+
"Hash": "470851b6d5d0ac559e9d01bb352b4021"
|
75 |
+
},
|
76 |
+
"RColorBrewer": {
|
77 |
+
"Package": "RColorBrewer",
|
78 |
+
"Version": "1.1-3",
|
79 |
+
"Source": "Repository",
|
80 |
+
"Repository": "CRAN",
|
81 |
+
"Requirements": [
|
82 |
+
"R"
|
83 |
+
],
|
84 |
+
"Hash": "45f0398006e83a5b10b72a90663d8d8c"
|
85 |
+
},
|
86 |
+
"Rcpp": {
|
87 |
+
"Package": "Rcpp",
|
88 |
+
"Version": "1.0.10",
|
89 |
+
"Source": "Repository",
|
90 |
+
"Repository": "CRAN",
|
91 |
+
"Requirements": [
|
92 |
+
"methods",
|
93 |
+
"utils"
|
94 |
+
],
|
95 |
+
"Hash": "e749cae40fa9ef469b6050959517453c"
|
96 |
+
},
|
97 |
+
"SQUAREM": {
|
98 |
+
"Package": "SQUAREM",
|
99 |
+
"Version": "2021.1",
|
100 |
+
"Source": "Repository",
|
101 |
+
"Repository": "CRAN",
|
102 |
+
"Requirements": [
|
103 |
+
"R"
|
104 |
+
],
|
105 |
+
"Hash": "0cf10dab0d023d5b46a5a14387556891"
|
106 |
+
},
|
107 |
+
"askpass": {
|
108 |
+
"Package": "askpass",
|
109 |
+
"Version": "1.1",
|
110 |
+
"Source": "Repository",
|
111 |
+
"Repository": "RSPM",
|
112 |
+
"Requirements": [
|
113 |
+
"sys"
|
114 |
+
],
|
115 |
+
"Hash": "e8a22846fff485f0be3770c2da758713"
|
116 |
+
},
|
117 |
+
"bit": {
|
118 |
+
"Package": "bit",
|
119 |
+
"Version": "4.0.5",
|
120 |
+
"Source": "Repository",
|
121 |
+
"Repository": "CRAN",
|
122 |
+
"Requirements": [
|
123 |
+
"R"
|
124 |
+
],
|
125 |
+
"Hash": "d242abec29412ce988848d0294b208fd"
|
126 |
+
},
|
127 |
+
"bit64": {
|
128 |
+
"Package": "bit64",
|
129 |
+
"Version": "4.0.5",
|
130 |
+
"Source": "Repository",
|
131 |
+
"Repository": "CRAN",
|
132 |
+
"Requirements": [
|
133 |
+
"R",
|
134 |
+
"bit",
|
135 |
+
"methods",
|
136 |
+
"stats",
|
137 |
+
"utils"
|
138 |
+
],
|
139 |
+
"Hash": "9fe98599ca456d6552421db0d6772d8f"
|
140 |
+
},
|
141 |
+
"bundle": {
|
142 |
+
"Package": "bundle",
|
143 |
+
"Version": "0.1.0",
|
144 |
+
"Source": "Repository",
|
145 |
+
"Repository": "CRAN",
|
146 |
+
"Requirements": [
|
147 |
+
"glue",
|
148 |
+
"purrr",
|
149 |
+
"rlang",
|
150 |
+
"utils",
|
151 |
+
"withr"
|
152 |
+
],
|
153 |
+
"Hash": "eddb272b43e01d3d667b1304aeafed5a"
|
154 |
+
},
|
155 |
+
"butcher": {
|
156 |
+
"Package": "butcher",
|
157 |
+
"Version": "0.3.2",
|
158 |
+
"Source": "Repository",
|
159 |
+
"Repository": "CRAN",
|
160 |
+
"Requirements": [
|
161 |
+
"R",
|
162 |
+
"cli",
|
163 |
+
"lobstr",
|
164 |
+
"methods",
|
165 |
+
"purrr",
|
166 |
+
"rlang",
|
167 |
+
"tibble",
|
168 |
+
"utils",
|
169 |
+
"vctrs"
|
170 |
+
],
|
171 |
+
"Hash": "0804e023949503fee9fab811788deb2f"
|
172 |
+
},
|
173 |
+
"caret": {
|
174 |
+
"Package": "caret",
|
175 |
+
"Version": "6.0-94",
|
176 |
+
"Source": "Repository",
|
177 |
+
"Repository": "CRAN",
|
178 |
+
"Requirements": [
|
179 |
+
"ModelMetrics",
|
180 |
+
"R",
|
181 |
+
"e1071",
|
182 |
+
"foreach",
|
183 |
+
"ggplot2",
|
184 |
+
"grDevices",
|
185 |
+
"lattice",
|
186 |
+
"methods",
|
187 |
+
"nlme",
|
188 |
+
"pROC",
|
189 |
+
"plyr",
|
190 |
+
"recipes",
|
191 |
+
"reshape2",
|
192 |
+
"stats",
|
193 |
+
"stats4",
|
194 |
+
"utils",
|
195 |
+
"withr"
|
196 |
+
],
|
197 |
+
"Hash": "528692344d5a174552e3bf7acdfbaebd"
|
198 |
+
},
|
199 |
+
"cereal": {
|
200 |
+
"Package": "cereal",
|
201 |
+
"Version": "0.1.0",
|
202 |
+
"Source": "Repository",
|
203 |
+
"Repository": "CRAN",
|
204 |
+
"Requirements": [
|
205 |
+
"R",
|
206 |
+
"jsonlite",
|
207 |
+
"rlang",
|
208 |
+
"tibble",
|
209 |
+
"vctrs"
|
210 |
+
],
|
211 |
+
"Hash": "a87b608b2e9d7a632538803391e127b3"
|
212 |
+
},
|
213 |
+
"class": {
|
214 |
+
"Package": "class",
|
215 |
+
"Version": "7.3-22",
|
216 |
+
"Source": "Repository",
|
217 |
+
"Repository": "CRAN",
|
218 |
+
"Requirements": [
|
219 |
+
"MASS",
|
220 |
+
"R",
|
221 |
+
"stats",
|
222 |
+
"utils"
|
223 |
+
],
|
224 |
+
"Hash": "f91f6b29f38b8c280f2b9477787d4bb2"
|
225 |
+
},
|
226 |
+
"cli": {
|
227 |
+
"Package": "cli",
|
228 |
+
"Version": "3.6.1",
|
229 |
+
"Source": "Repository",
|
230 |
+
"Repository": "CRAN",
|
231 |
+
"Requirements": [
|
232 |
+
"R",
|
233 |
+
"utils"
|
234 |
+
],
|
235 |
+
"Hash": "89e6d8219950eac806ae0c489052048a"
|
236 |
+
},
|
237 |
+
"clipr": {
|
238 |
+
"Package": "clipr",
|
239 |
+
"Version": "0.8.0",
|
240 |
+
"Source": "Repository",
|
241 |
+
"Repository": "CRAN",
|
242 |
+
"Requirements": [
|
243 |
+
"utils"
|
244 |
+
],
|
245 |
+
"Hash": "3f038e5ac7f41d4ac41ce658c85e3042"
|
246 |
+
},
|
247 |
+
"clock": {
|
248 |
+
"Package": "clock",
|
249 |
+
"Version": "0.7.0",
|
250 |
+
"Source": "Repository",
|
251 |
+
"Repository": "CRAN",
|
252 |
+
"Requirements": [
|
253 |
+
"R",
|
254 |
+
"cli",
|
255 |
+
"cpp11",
|
256 |
+
"lifecycle",
|
257 |
+
"rlang",
|
258 |
+
"tzdb",
|
259 |
+
"vctrs"
|
260 |
+
],
|
261 |
+
"Hash": "3d8a84cdf9f6f8564531c49b70f3833d"
|
262 |
+
},
|
263 |
+
"codetools": {
|
264 |
+
"Package": "codetools",
|
265 |
+
"Version": "0.2-19",
|
266 |
+
"Source": "Repository",
|
267 |
+
"Repository": "CRAN",
|
268 |
+
"Requirements": [
|
269 |
+
"R"
|
270 |
+
],
|
271 |
+
"Hash": "c089a619a7fae175d149d89164f8c7d8"
|
272 |
+
},
|
273 |
+
"colorspace": {
|
274 |
+
"Package": "colorspace",
|
275 |
+
"Version": "2.1-0",
|
276 |
+
"Source": "Repository",
|
277 |
+
"Repository": "CRAN",
|
278 |
+
"Requirements": [
|
279 |
+
"R",
|
280 |
+
"grDevices",
|
281 |
+
"graphics",
|
282 |
+
"methods",
|
283 |
+
"stats"
|
284 |
+
],
|
285 |
+
"Hash": "f20c47fd52fae58b4e377c37bb8c335b"
|
286 |
+
},
|
287 |
+
"cpp11": {
|
288 |
+
"Package": "cpp11",
|
289 |
+
"Version": "0.4.4",
|
290 |
+
"Source": "Repository",
|
291 |
+
"Repository": "CRAN",
|
292 |
+
"Hash": "3f7d8664d7324406cd10cd650ad85e5f"
|
293 |
+
},
|
294 |
+
"crayon": {
|
295 |
+
"Package": "crayon",
|
296 |
+
"Version": "1.5.2",
|
297 |
+
"Source": "Repository",
|
298 |
+
"Repository": "CRAN",
|
299 |
+
"Requirements": [
|
300 |
+
"grDevices",
|
301 |
+
"methods",
|
302 |
+
"utils"
|
303 |
+
],
|
304 |
+
"Hash": "e8a1e41acf02548751f45c718d55aa6a"
|
305 |
+
},
|
306 |
+
"curl": {
|
307 |
+
"Package": "curl",
|
308 |
+
"Version": "5.0.1",
|
309 |
+
"Source": "Repository",
|
310 |
+
"Repository": "CRAN",
|
311 |
+
"Requirements": [
|
312 |
+
"R"
|
313 |
+
],
|
314 |
+
"Hash": "2118af9cb164c8d2dddc7b89eaf732d9"
|
315 |
+
},
|
316 |
+
"data.table": {
|
317 |
+
"Package": "data.table",
|
318 |
+
"Version": "1.14.8",
|
319 |
+
"Source": "Repository",
|
320 |
+
"Repository": "CRAN",
|
321 |
+
"Requirements": [
|
322 |
+
"R",
|
323 |
+
"methods"
|
324 |
+
],
|
325 |
+
"Hash": "b4c06e554f33344e044ccd7fdca750a9"
|
326 |
+
},
|
327 |
+
"diagram": {
|
328 |
+
"Package": "diagram",
|
329 |
+
"Version": "1.6.5",
|
330 |
+
"Source": "Repository",
|
331 |
+
"Repository": "CRAN",
|
332 |
+
"Requirements": [
|
333 |
+
"R",
|
334 |
+
"graphics",
|
335 |
+
"shape",
|
336 |
+
"stats"
|
337 |
+
],
|
338 |
+
"Hash": "c7f527c59edc72c4bce63519b8d38752"
|
339 |
+
},
|
340 |
+
"digest": {
|
341 |
+
"Package": "digest",
|
342 |
+
"Version": "0.6.32",
|
343 |
+
"Source": "Repository",
|
344 |
+
"Repository": "CRAN",
|
345 |
+
"Requirements": [
|
346 |
+
"R",
|
347 |
+
"utils"
|
348 |
+
],
|
349 |
+
"Hash": "011ce1464a4716c488f4fc649c3d4d50"
|
350 |
+
},
|
351 |
+
"dplyr": {
|
352 |
+
"Package": "dplyr",
|
353 |
+
"Version": "1.1.2",
|
354 |
+
"Source": "Repository",
|
355 |
+
"Repository": "CRAN",
|
356 |
+
"Requirements": [
|
357 |
+
"R",
|
358 |
+
"R6",
|
359 |
+
"cli",
|
360 |
+
"generics",
|
361 |
+
"glue",
|
362 |
+
"lifecycle",
|
363 |
+
"magrittr",
|
364 |
+
"methods",
|
365 |
+
"pillar",
|
366 |
+
"rlang",
|
367 |
+
"tibble",
|
368 |
+
"tidyselect",
|
369 |
+
"utils",
|
370 |
+
"vctrs"
|
371 |
+
],
|
372 |
+
"Hash": "dea6970ff715ca541c387de363ff405e"
|
373 |
+
},
|
374 |
+
"e1071": {
|
375 |
+
"Package": "e1071",
|
376 |
+
"Version": "1.7-13",
|
377 |
+
"Source": "Repository",
|
378 |
+
"Repository": "CRAN",
|
379 |
+
"Requirements": [
|
380 |
+
"class",
|
381 |
+
"grDevices",
|
382 |
+
"graphics",
|
383 |
+
"methods",
|
384 |
+
"proxy",
|
385 |
+
"stats",
|
386 |
+
"utils"
|
387 |
+
],
|
388 |
+
"Hash": "1046cb48d06cb40c2900d8878f03a0fe"
|
389 |
+
},
|
390 |
+
"ellipsis": {
|
391 |
+
"Package": "ellipsis",
|
392 |
+
"Version": "0.3.2",
|
393 |
+
"Source": "Repository",
|
394 |
+
"Repository": "CRAN",
|
395 |
+
"Requirements": [
|
396 |
+
"R",
|
397 |
+
"rlang"
|
398 |
+
],
|
399 |
+
"Hash": "bb0eec2fe32e88d9e2836c2f73ea2077"
|
400 |
+
},
|
401 |
+
"fansi": {
|
402 |
+
"Package": "fansi",
|
403 |
+
"Version": "1.0.4",
|
404 |
+
"Source": "Repository",
|
405 |
+
"Repository": "CRAN",
|
406 |
+
"Requirements": [
|
407 |
+
"R",
|
408 |
+
"grDevices",
|
409 |
+
"utils"
|
410 |
+
],
|
411 |
+
"Hash": "1d9e7ad3c8312a192dea7d3db0274fde"
|
412 |
+
},
|
413 |
+
"farver": {
|
414 |
+
"Package": "farver",
|
415 |
+
"Version": "2.1.1",
|
416 |
+
"Source": "Repository",
|
417 |
+
"Repository": "CRAN",
|
418 |
+
"Hash": "8106d78941f34855c440ddb946b8f7a5"
|
419 |
+
},
|
420 |
+
"foreach": {
|
421 |
+
"Package": "foreach",
|
422 |
+
"Version": "1.5.2",
|
423 |
+
"Source": "Repository",
|
424 |
+
"Repository": "CRAN",
|
425 |
+
"Requirements": [
|
426 |
+
"R",
|
427 |
+
"codetools",
|
428 |
+
"iterators",
|
429 |
+
"utils"
|
430 |
+
],
|
431 |
+
"Hash": "618609b42c9406731ead03adf5379850"
|
432 |
+
},
|
433 |
+
"fs": {
|
434 |
+
"Package": "fs",
|
435 |
+
"Version": "1.6.2",
|
436 |
+
"Source": "Repository",
|
437 |
+
"Repository": "CRAN",
|
438 |
+
"Requirements": [
|
439 |
+
"R",
|
440 |
+
"methods"
|
441 |
+
],
|
442 |
+
"Hash": "94af08e0aa9675a16fadbb3aaaa90d2a"
|
443 |
+
},
|
444 |
+
"future": {
|
445 |
+
"Package": "future",
|
446 |
+
"Version": "1.33.0",
|
447 |
+
"Source": "Repository",
|
448 |
+
"Repository": "CRAN",
|
449 |
+
"Requirements": [
|
450 |
+
"digest",
|
451 |
+
"globals",
|
452 |
+
"listenv",
|
453 |
+
"parallel",
|
454 |
+
"parallelly",
|
455 |
+
"utils"
|
456 |
+
],
|
457 |
+
"Hash": "8e92c7bc53e91b9bb1faf9a6ef0e8514"
|
458 |
+
},
|
459 |
+
"future.apply": {
|
460 |
+
"Package": "future.apply",
|
461 |
+
"Version": "1.11.0",
|
462 |
+
"Source": "Repository",
|
463 |
+
"Repository": "CRAN",
|
464 |
+
"Requirements": [
|
465 |
+
"R",
|
466 |
+
"future",
|
467 |
+
"globals",
|
468 |
+
"parallel",
|
469 |
+
"utils"
|
470 |
+
],
|
471 |
+
"Hash": "ba4be138fe47eac3e16a6deaa4da106e"
|
472 |
+
},
|
473 |
+
"generics": {
|
474 |
+
"Package": "generics",
|
475 |
+
"Version": "0.1.3",
|
476 |
+
"Source": "Repository",
|
477 |
+
"Repository": "CRAN",
|
478 |
+
"Requirements": [
|
479 |
+
"R",
|
480 |
+
"methods"
|
481 |
+
],
|
482 |
+
"Hash": "15e9634c0fcd294799e9b2e929ed1b86"
|
483 |
+
},
|
484 |
+
"ggplot2": {
|
485 |
+
"Package": "ggplot2",
|
486 |
+
"Version": "3.4.2",
|
487 |
+
"Source": "Repository",
|
488 |
+
"Repository": "CRAN",
|
489 |
+
"Requirements": [
|
490 |
+
"MASS",
|
491 |
+
"R",
|
492 |
+
"cli",
|
493 |
+
"glue",
|
494 |
+
"grDevices",
|
495 |
+
"grid",
|
496 |
+
"gtable",
|
497 |
+
"isoband",
|
498 |
+
"lifecycle",
|
499 |
+
"mgcv",
|
500 |
+
"rlang",
|
501 |
+
"scales",
|
502 |
+
"stats",
|
503 |
+
"tibble",
|
504 |
+
"vctrs",
|
505 |
+
"withr"
|
506 |
+
],
|
507 |
+
"Hash": "3a147ee02e85a8941aad9909f1b43b7b"
|
508 |
+
},
|
509 |
+
"globals": {
|
510 |
+
"Package": "globals",
|
511 |
+
"Version": "0.16.2",
|
512 |
+
"Source": "Repository",
|
513 |
+
"Repository": "CRAN",
|
514 |
+
"Requirements": [
|
515 |
+
"R",
|
516 |
+
"codetools"
|
517 |
+
],
|
518 |
+
"Hash": "baa9585ab4ce47a9f4618e671778cc6f"
|
519 |
+
},
|
520 |
+
"glue": {
|
521 |
+
"Package": "glue",
|
522 |
+
"Version": "1.6.2",
|
523 |
+
"Source": "Repository",
|
524 |
+
"Repository": "CRAN",
|
525 |
+
"Requirements": [
|
526 |
+
"R",
|
527 |
+
"methods"
|
528 |
+
],
|
529 |
+
"Hash": "4f2596dfb05dac67b9dc558e5c6fba2e"
|
530 |
+
},
|
531 |
+
"gower": {
|
532 |
+
"Package": "gower",
|
533 |
+
"Version": "1.0.1",
|
534 |
+
"Source": "Repository",
|
535 |
+
"Repository": "CRAN",
|
536 |
+
"Hash": "7a0051eef852c301b5efe2f7913dd45f"
|
537 |
+
},
|
538 |
+
"gtable": {
|
539 |
+
"Package": "gtable",
|
540 |
+
"Version": "0.3.3",
|
541 |
+
"Source": "Repository",
|
542 |
+
"Repository": "CRAN",
|
543 |
+
"Requirements": [
|
544 |
+
"R",
|
545 |
+
"cli",
|
546 |
+
"glue",
|
547 |
+
"grid",
|
548 |
+
"lifecycle",
|
549 |
+
"rlang"
|
550 |
+
],
|
551 |
+
"Hash": "b44addadb528a0d227794121c00572a0"
|
552 |
+
},
|
553 |
+
"hardhat": {
|
554 |
+
"Package": "hardhat",
|
555 |
+
"Version": "1.3.0",
|
556 |
+
"Source": "Repository",
|
557 |
+
"Repository": "CRAN",
|
558 |
+
"Requirements": [
|
559 |
+
"R",
|
560 |
+
"cli",
|
561 |
+
"glue",
|
562 |
+
"rlang",
|
563 |
+
"tibble",
|
564 |
+
"vctrs"
|
565 |
+
],
|
566 |
+
"Hash": "b56b42c50bb7c76a683e8e61f415d828"
|
567 |
+
},
|
568 |
+
"hms": {
|
569 |
+
"Package": "hms",
|
570 |
+
"Version": "1.1.3",
|
571 |
+
"Source": "Repository",
|
572 |
+
"Repository": "CRAN",
|
573 |
+
"Requirements": [
|
574 |
+
"lifecycle",
|
575 |
+
"methods",
|
576 |
+
"pkgconfig",
|
577 |
+
"rlang",
|
578 |
+
"vctrs"
|
579 |
+
],
|
580 |
+
"Hash": "b59377caa7ed00fa41808342002138f9"
|
581 |
+
},
|
582 |
+
"httpuv": {
|
583 |
+
"Package": "httpuv",
|
584 |
+
"Version": "1.6.11",
|
585 |
+
"Source": "Repository",
|
586 |
+
"Repository": "CRAN",
|
587 |
+
"Requirements": [
|
588 |
+
"R",
|
589 |
+
"R6",
|
590 |
+
"Rcpp",
|
591 |
+
"later",
|
592 |
+
"promises",
|
593 |
+
"utils"
|
594 |
+
],
|
595 |
+
"Hash": "838602f54e32c1a0f8cc80708cefcefa"
|
596 |
+
},
|
597 |
+
"httr": {
|
598 |
+
"Package": "httr",
|
599 |
+
"Version": "1.4.6",
|
600 |
+
"Source": "Repository",
|
601 |
+
"Repository": "CRAN",
|
602 |
+
"Requirements": [
|
603 |
+
"R",
|
604 |
+
"R6",
|
605 |
+
"curl",
|
606 |
+
"jsonlite",
|
607 |
+
"mime",
|
608 |
+
"openssl"
|
609 |
+
],
|
610 |
+
"Hash": "7e5e3cbd2a7bc07880c94e22348fb661"
|
611 |
+
},
|
612 |
+
"ipred": {
|
613 |
+
"Package": "ipred",
|
614 |
+
"Version": "0.9-14",
|
615 |
+
"Source": "Repository",
|
616 |
+
"Repository": "CRAN",
|
617 |
+
"Requirements": [
|
618 |
+
"MASS",
|
619 |
+
"R",
|
620 |
+
"class",
|
621 |
+
"nnet",
|
622 |
+
"prodlim",
|
623 |
+
"rpart",
|
624 |
+
"survival"
|
625 |
+
],
|
626 |
+
"Hash": "b25a108cbf4834be7c1b1f46ff30f888"
|
627 |
+
},
|
628 |
+
"isoband": {
|
629 |
+
"Package": "isoband",
|
630 |
+
"Version": "0.2.7",
|
631 |
+
"Source": "Repository",
|
632 |
+
"Repository": "CRAN",
|
633 |
+
"Requirements": [
|
634 |
+
"grid",
|
635 |
+
"utils"
|
636 |
+
],
|
637 |
+
"Hash": "0080607b4a1a7b28979aecef976d8bc2"
|
638 |
+
},
|
639 |
+
"iterators": {
|
640 |
+
"Package": "iterators",
|
641 |
+
"Version": "1.0.14",
|
642 |
+
"Source": "Repository",
|
643 |
+
"Repository": "CRAN",
|
644 |
+
"Requirements": [
|
645 |
+
"R",
|
646 |
+
"utils"
|
647 |
+
],
|
648 |
+
"Hash": "8954069286b4b2b0d023d1b288dce978"
|
649 |
+
},
|
650 |
+
"jsonlite": {
|
651 |
+
"Package": "jsonlite",
|
652 |
+
"Version": "1.8.7",
|
653 |
+
"Source": "Repository",
|
654 |
+
"Repository": "CRAN",
|
655 |
+
"Requirements": [
|
656 |
+
"methods"
|
657 |
+
],
|
658 |
+
"Hash": "266a20443ca13c65688b2116d5220f76"
|
659 |
+
},
|
660 |
+
"labeling": {
|
661 |
+
"Package": "labeling",
|
662 |
+
"Version": "0.4.2",
|
663 |
+
"Source": "Repository",
|
664 |
+
"Repository": "CRAN",
|
665 |
+
"Requirements": [
|
666 |
+
"graphics",
|
667 |
+
"stats"
|
668 |
+
],
|
669 |
+
"Hash": "3d5108641f47470611a32d0bdf357a72"
|
670 |
+
},
|
671 |
+
"later": {
|
672 |
+
"Package": "later",
|
673 |
+
"Version": "1.3.1",
|
674 |
+
"Source": "Repository",
|
675 |
+
"Repository": "CRAN",
|
676 |
+
"Requirements": [
|
677 |
+
"Rcpp",
|
678 |
+
"rlang"
|
679 |
+
],
|
680 |
+
"Hash": "40401c9cf2bc2259dfe83311c9384710"
|
681 |
+
},
|
682 |
+
"lattice": {
|
683 |
+
"Package": "lattice",
|
684 |
+
"Version": "0.21-8",
|
685 |
+
"Source": "Repository",
|
686 |
+
"Repository": "CRAN",
|
687 |
+
"Requirements": [
|
688 |
+
"R",
|
689 |
+
"grDevices",
|
690 |
+
"graphics",
|
691 |
+
"grid",
|
692 |
+
"stats",
|
693 |
+
"utils"
|
694 |
+
],
|
695 |
+
"Hash": "0b8a6d63c8770f02a8b5635f3c431e6b"
|
696 |
+
},
|
697 |
+
"lava": {
|
698 |
+
"Package": "lava",
|
699 |
+
"Version": "1.7.2.1",
|
700 |
+
"Source": "Repository",
|
701 |
+
"Repository": "CRAN",
|
702 |
+
"Requirements": [
|
703 |
+
"R",
|
704 |
+
"SQUAREM",
|
705 |
+
"future.apply",
|
706 |
+
"grDevices",
|
707 |
+
"graphics",
|
708 |
+
"methods",
|
709 |
+
"numDeriv",
|
710 |
+
"progressr",
|
711 |
+
"stats",
|
712 |
+
"survival",
|
713 |
+
"utils"
|
714 |
+
],
|
715 |
+
"Hash": "bbc70840ea0f91f34dd9703efe4c96c3"
|
716 |
+
},
|
717 |
+
"lifecycle": {
|
718 |
+
"Package": "lifecycle",
|
719 |
+
"Version": "1.0.3",
|
720 |
+
"Source": "Repository",
|
721 |
+
"Repository": "CRAN",
|
722 |
+
"Requirements": [
|
723 |
+
"R",
|
724 |
+
"cli",
|
725 |
+
"glue",
|
726 |
+
"rlang"
|
727 |
+
],
|
728 |
+
"Hash": "001cecbeac1cff9301bdc3775ee46a86"
|
729 |
+
},
|
730 |
+
"listenv": {
|
731 |
+
"Package": "listenv",
|
732 |
+
"Version": "0.9.0",
|
733 |
+
"Source": "Repository",
|
734 |
+
"Repository": "CRAN",
|
735 |
+
"Requirements": [
|
736 |
+
"R"
|
737 |
+
],
|
738 |
+
"Hash": "4fbd3679ec8ee169ba28d4b1ea7d0e8f"
|
739 |
+
},
|
740 |
+
"lobstr": {
|
741 |
+
"Package": "lobstr",
|
742 |
+
"Version": "1.1.2",
|
743 |
+
"Source": "Repository",
|
744 |
+
"Repository": "CRAN",
|
745 |
+
"Requirements": [
|
746 |
+
"R",
|
747 |
+
"cpp11",
|
748 |
+
"crayon",
|
749 |
+
"methods",
|
750 |
+
"prettyunits",
|
751 |
+
"rlang"
|
752 |
+
],
|
753 |
+
"Hash": "f2a94f8fc9db382a642e965339635ad6"
|
754 |
+
},
|
755 |
+
"lubridate": {
|
756 |
+
"Package": "lubridate",
|
757 |
+
"Version": "1.9.2",
|
758 |
+
"Source": "Repository",
|
759 |
+
"Repository": "CRAN",
|
760 |
+
"Requirements": [
|
761 |
+
"R",
|
762 |
+
"generics",
|
763 |
+
"methods",
|
764 |
+
"timechange"
|
765 |
+
],
|
766 |
+
"Hash": "e25f18436e3efd42c7c590a1c4c15390"
|
767 |
+
},
|
768 |
+
"magrittr": {
|
769 |
+
"Package": "magrittr",
|
770 |
+
"Version": "2.0.3",
|
771 |
+
"Source": "Repository",
|
772 |
+
"Repository": "CRAN",
|
773 |
+
"Requirements": [
|
774 |
+
"R"
|
775 |
+
],
|
776 |
+
"Hash": "7ce2733a9826b3aeb1775d56fd305472"
|
777 |
+
},
|
778 |
+
"mgcv": {
|
779 |
+
"Package": "mgcv",
|
780 |
+
"Version": "1.8-42",
|
781 |
+
"Source": "Repository",
|
782 |
+
"Repository": "CRAN",
|
783 |
+
"Requirements": [
|
784 |
+
"Matrix",
|
785 |
+
"R",
|
786 |
+
"graphics",
|
787 |
+
"methods",
|
788 |
+
"nlme",
|
789 |
+
"splines",
|
790 |
+
"stats",
|
791 |
+
"utils"
|
792 |
+
],
|
793 |
+
"Hash": "3460beba7ccc8946249ba35327ba902a"
|
794 |
+
},
|
795 |
+
"mime": {
|
796 |
+
"Package": "mime",
|
797 |
+
"Version": "0.12",
|
798 |
+
"Source": "Repository",
|
799 |
+
"Repository": "CRAN",
|
800 |
+
"Requirements": [
|
801 |
+
"tools"
|
802 |
+
],
|
803 |
+
"Hash": "18e9c28c1d3ca1560ce30658b22ce104"
|
804 |
+
},
|
805 |
+
"munsell": {
|
806 |
+
"Package": "munsell",
|
807 |
+
"Version": "0.5.0",
|
808 |
+
"Source": "Repository",
|
809 |
+
"Repository": "CRAN",
|
810 |
+
"Requirements": [
|
811 |
+
"colorspace",
|
812 |
+
"methods"
|
813 |
+
],
|
814 |
+
"Hash": "6dfe8bf774944bd5595785e3229d8771"
|
815 |
+
},
|
816 |
+
"nlme": {
|
817 |
+
"Package": "nlme",
|
818 |
+
"Version": "3.1-162",
|
819 |
+
"Source": "Repository",
|
820 |
+
"Repository": "CRAN",
|
821 |
+
"Requirements": [
|
822 |
+
"R",
|
823 |
+
"graphics",
|
824 |
+
"lattice",
|
825 |
+
"stats",
|
826 |
+
"utils"
|
827 |
+
],
|
828 |
+
"Hash": "0984ce8da8da9ead8643c5cbbb60f83e"
|
829 |
+
},
|
830 |
+
"nnet": {
|
831 |
+
"Package": "nnet",
|
832 |
+
"Version": "7.3-19",
|
833 |
+
"Source": "Repository",
|
834 |
+
"Repository": "CRAN",
|
835 |
+
"Requirements": [
|
836 |
+
"R",
|
837 |
+
"stats",
|
838 |
+
"utils"
|
839 |
+
],
|
840 |
+
"Hash": "2c797b46eea7fb58ede195bc0b1f1138"
|
841 |
+
},
|
842 |
+
"numDeriv": {
|
843 |
+
"Package": "numDeriv",
|
844 |
+
"Version": "2016.8-1.1",
|
845 |
+
"Source": "Repository",
|
846 |
+
"Repository": "CRAN",
|
847 |
+
"Requirements": [
|
848 |
+
"R"
|
849 |
+
],
|
850 |
+
"Hash": "df58958f293b166e4ab885ebcad90e02"
|
851 |
+
},
|
852 |
+
"openssl": {
|
853 |
+
"Package": "openssl",
|
854 |
+
"Version": "2.0.6",
|
855 |
+
"Source": "Repository",
|
856 |
+
"Repository": "CRAN",
|
857 |
+
"Requirements": [
|
858 |
+
"askpass"
|
859 |
+
],
|
860 |
+
"Hash": "0f7cd2962e3044bb940cca4f4b5cecbe"
|
861 |
+
},
|
862 |
+
"pROC": {
|
863 |
+
"Package": "pROC",
|
864 |
+
"Version": "1.18.2",
|
865 |
+
"Source": "Repository",
|
866 |
+
"Repository": "CRAN",
|
867 |
+
"Requirements": [
|
868 |
+
"R",
|
869 |
+
"Rcpp",
|
870 |
+
"methods",
|
871 |
+
"plyr"
|
872 |
+
],
|
873 |
+
"Hash": "13fac9c52e7084ec29c897007fef3b61"
|
874 |
+
},
|
875 |
+
"parallelly": {
|
876 |
+
"Package": "parallelly",
|
877 |
+
"Version": "1.36.0",
|
878 |
+
"Source": "Repository",
|
879 |
+
"Repository": "CRAN",
|
880 |
+
"Requirements": [
|
881 |
+
"parallel",
|
882 |
+
"tools",
|
883 |
+
"utils"
|
884 |
+
],
|
885 |
+
"Hash": "bca377e1c87ec89ebed77bba00635b2e"
|
886 |
+
},
|
887 |
+
"pillar": {
|
888 |
+
"Package": "pillar",
|
889 |
+
"Version": "1.9.0",
|
890 |
+
"Source": "Repository",
|
891 |
+
"Repository": "CRAN",
|
892 |
+
"Requirements": [
|
893 |
+
"cli",
|
894 |
+
"fansi",
|
895 |
+
"glue",
|
896 |
+
"lifecycle",
|
897 |
+
"rlang",
|
898 |
+
"utf8",
|
899 |
+
"utils",
|
900 |
+
"vctrs"
|
901 |
+
],
|
902 |
+
"Hash": "15da5a8412f317beeee6175fbc76f4bb"
|
903 |
+
},
|
904 |
+
"pins": {
|
905 |
+
"Package": "pins",
|
906 |
+
"Version": "1.2.2",
|
907 |
+
"Source": "Repository",
|
908 |
+
"Repository": "CRAN",
|
909 |
+
"Requirements": [
|
910 |
+
"R",
|
911 |
+
"cli",
|
912 |
+
"digest",
|
913 |
+
"ellipsis",
|
914 |
+
"fs",
|
915 |
+
"generics",
|
916 |
+
"glue",
|
917 |
+
"httr",
|
918 |
+
"jsonlite",
|
919 |
+
"lifecycle",
|
920 |
+
"magrittr",
|
921 |
+
"purrr",
|
922 |
+
"rappdirs",
|
923 |
+
"rlang",
|
924 |
+
"tibble",
|
925 |
+
"whisker",
|
926 |
+
"withr",
|
927 |
+
"yaml"
|
928 |
+
],
|
929 |
+
"Hash": "0a8f9e9ec7d0b61a3b08bd9b89a21e76"
|
930 |
+
},
|
931 |
+
"pkgconfig": {
|
932 |
+
"Package": "pkgconfig",
|
933 |
+
"Version": "2.0.3",
|
934 |
+
"Source": "Repository",
|
935 |
+
"Repository": "RSPM",
|
936 |
+
"Requirements": [
|
937 |
+
"utils"
|
938 |
+
],
|
939 |
+
"Hash": "01f28d4278f15c76cddbea05899c5d6f"
|
940 |
+
},
|
941 |
+
"plumber": {
|
942 |
+
"Package": "plumber",
|
943 |
+
"Version": "1.2.1",
|
944 |
+
"Source": "Repository",
|
945 |
+
"Repository": "CRAN",
|
946 |
+
"Requirements": [
|
947 |
+
"R",
|
948 |
+
"R6",
|
949 |
+
"crayon",
|
950 |
+
"ellipsis",
|
951 |
+
"httpuv",
|
952 |
+
"jsonlite",
|
953 |
+
"lifecycle",
|
954 |
+
"magrittr",
|
955 |
+
"mime",
|
956 |
+
"promises",
|
957 |
+
"rlang",
|
958 |
+
"sodium",
|
959 |
+
"stringi",
|
960 |
+
"swagger",
|
961 |
+
"webutils"
|
962 |
+
],
|
963 |
+
"Hash": "8b65a7a00ef8edc5ddc6fabf0aff1194"
|
964 |
+
},
|
965 |
+
"plyr": {
|
966 |
+
"Package": "plyr",
|
967 |
+
"Version": "1.8.8",
|
968 |
+
"Source": "Repository",
|
969 |
+
"Repository": "CRAN",
|
970 |
+
"Requirements": [
|
971 |
+
"R",
|
972 |
+
"Rcpp"
|
973 |
+
],
|
974 |
+
"Hash": "d744387aef9047b0b48be2933d78e862"
|
975 |
+
},
|
976 |
+
"prettyunits": {
|
977 |
+
"Package": "prettyunits",
|
978 |
+
"Version": "1.1.1",
|
979 |
+
"Source": "Repository",
|
980 |
+
"Repository": "RSPM",
|
981 |
+
"Hash": "95ef9167b75dde9d2ccc3c7528393e7e"
|
982 |
+
},
|
983 |
+
"prodlim": {
|
984 |
+
"Package": "prodlim",
|
985 |
+
"Version": "2023.03.31",
|
986 |
+
"Source": "Repository",
|
987 |
+
"Repository": "CRAN",
|
988 |
+
"Requirements": [
|
989 |
+
"KernSmooth",
|
990 |
+
"R",
|
991 |
+
"Rcpp",
|
992 |
+
"data.table",
|
993 |
+
"diagram",
|
994 |
+
"grDevices",
|
995 |
+
"graphics",
|
996 |
+
"lava",
|
997 |
+
"stats",
|
998 |
+
"survival"
|
999 |
+
],
|
1000 |
+
"Hash": "3f60fadb28cfebdd20b0dd4198a38c60"
|
1001 |
+
},
|
1002 |
+
"progress": {
|
1003 |
+
"Package": "progress",
|
1004 |
+
"Version": "1.2.2",
|
1005 |
+
"Source": "Repository",
|
1006 |
+
"Repository": "CRAN",
|
1007 |
+
"Requirements": [
|
1008 |
+
"R6",
|
1009 |
+
"crayon",
|
1010 |
+
"hms",
|
1011 |
+
"prettyunits"
|
1012 |
+
],
|
1013 |
+
"Hash": "14dc9f7a3c91ebb14ec5bb9208a07061"
|
1014 |
+
},
|
1015 |
+
"progressr": {
|
1016 |
+
"Package": "progressr",
|
1017 |
+
"Version": "0.13.0",
|
1018 |
+
"Source": "Repository",
|
1019 |
+
"Repository": "CRAN",
|
1020 |
+
"Requirements": [
|
1021 |
+
"R",
|
1022 |
+
"digest",
|
1023 |
+
"utils"
|
1024 |
+
],
|
1025 |
+
"Hash": "376a8ebcc878f9c1395e212548fc297a"
|
1026 |
+
},
|
1027 |
+
"promises": {
|
1028 |
+
"Package": "promises",
|
1029 |
+
"Version": "1.2.0.1",
|
1030 |
+
"Source": "Repository",
|
1031 |
+
"Repository": "CRAN",
|
1032 |
+
"Requirements": [
|
1033 |
+
"R6",
|
1034 |
+
"Rcpp",
|
1035 |
+
"later",
|
1036 |
+
"magrittr",
|
1037 |
+
"rlang",
|
1038 |
+
"stats"
|
1039 |
+
],
|
1040 |
+
"Hash": "4ab2c43adb4d4699cf3690acd378d75d"
|
1041 |
+
},
|
1042 |
+
"proxy": {
|
1043 |
+
"Package": "proxy",
|
1044 |
+
"Version": "0.4-27",
|
1045 |
+
"Source": "Repository",
|
1046 |
+
"Repository": "CRAN",
|
1047 |
+
"Requirements": [
|
1048 |
+
"R",
|
1049 |
+
"stats",
|
1050 |
+
"utils"
|
1051 |
+
],
|
1052 |
+
"Hash": "e0ef355c12942cf7a6b91a6cfaea8b3e"
|
1053 |
+
},
|
1054 |
+
"purrr": {
|
1055 |
+
"Package": "purrr",
|
1056 |
+
"Version": "1.0.1",
|
1057 |
+
"Source": "Repository",
|
1058 |
+
"Repository": "CRAN",
|
1059 |
+
"Requirements": [
|
1060 |
+
"R",
|
1061 |
+
"cli",
|
1062 |
+
"lifecycle",
|
1063 |
+
"magrittr",
|
1064 |
+
"rlang",
|
1065 |
+
"vctrs"
|
1066 |
+
],
|
1067 |
+
"Hash": "d71c815267c640f17ddbf7f16144b4bb"
|
1068 |
+
},
|
1069 |
+
"rapidoc": {
|
1070 |
+
"Package": "rapidoc",
|
1071 |
+
"Version": "8.4.3",
|
1072 |
+
"Source": "Repository",
|
1073 |
+
"Repository": "CRAN",
|
1074 |
+
"Requirements": [
|
1075 |
+
"jsonlite"
|
1076 |
+
],
|
1077 |
+
"Hash": "576f303483fd25cda71f6c4e16682d1c"
|
1078 |
+
},
|
1079 |
+
"rappdirs": {
|
1080 |
+
"Package": "rappdirs",
|
1081 |
+
"Version": "0.3.3",
|
1082 |
+
"Source": "Repository",
|
1083 |
+
"Repository": "RSPM",
|
1084 |
+
"Requirements": [
|
1085 |
+
"R"
|
1086 |
+
],
|
1087 |
+
"Hash": "5e3c5dc0b071b21fa128676560dbe94d"
|
1088 |
+
},
|
1089 |
+
"readr": {
|
1090 |
+
"Package": "readr",
|
1091 |
+
"Version": "2.1.4",
|
1092 |
+
"Source": "Repository",
|
1093 |
+
"Repository": "CRAN",
|
1094 |
+
"Requirements": [
|
1095 |
+
"R",
|
1096 |
+
"R6",
|
1097 |
+
"cli",
|
1098 |
+
"clipr",
|
1099 |
+
"cpp11",
|
1100 |
+
"crayon",
|
1101 |
+
"hms",
|
1102 |
+
"lifecycle",
|
1103 |
+
"methods",
|
1104 |
+
"rlang",
|
1105 |
+
"tibble",
|
1106 |
+
"tzdb",
|
1107 |
+
"utils",
|
1108 |
+
"vroom"
|
1109 |
+
],
|
1110 |
+
"Hash": "b5047343b3825f37ad9d3b5d89aa1078"
|
1111 |
+
},
|
1112 |
+
"recipes": {
|
1113 |
+
"Package": "recipes",
|
1114 |
+
"Version": "1.0.6",
|
1115 |
+
"Source": "Repository",
|
1116 |
+
"Repository": "CRAN",
|
1117 |
+
"Requirements": [
|
1118 |
+
"Matrix",
|
1119 |
+
"R",
|
1120 |
+
"cli",
|
1121 |
+
"clock",
|
1122 |
+
"dplyr",
|
1123 |
+
"ellipsis",
|
1124 |
+
"generics",
|
1125 |
+
"glue",
|
1126 |
+
"gower",
|
1127 |
+
"hardhat",
|
1128 |
+
"ipred",
|
1129 |
+
"lifecycle",
|
1130 |
+
"lubridate",
|
1131 |
+
"magrittr",
|
1132 |
+
"purrr",
|
1133 |
+
"rlang",
|
1134 |
+
"stats",
|
1135 |
+
"tibble",
|
1136 |
+
"tidyr",
|
1137 |
+
"tidyselect",
|
1138 |
+
"timeDate",
|
1139 |
+
"utils",
|
1140 |
+
"vctrs",
|
1141 |
+
"withr"
|
1142 |
+
],
|
1143 |
+
"Hash": "eb53ffc9674dc9a52c3a7e22d96d3f56"
|
1144 |
+
},
|
1145 |
+
"renv": {
|
1146 |
+
"Package": "renv",
|
1147 |
+
"Version": "0.17.3",
|
1148 |
+
"Source": "Repository",
|
1149 |
+
"Repository": "CRAN",
|
1150 |
+
"Requirements": [
|
1151 |
+
"utils"
|
1152 |
+
],
|
1153 |
+
"Hash": "4543b8cd233ae25c6aba8548be9e747e"
|
1154 |
+
},
|
1155 |
+
"reshape2": {
|
1156 |
+
"Package": "reshape2",
|
1157 |
+
"Version": "1.4.4",
|
1158 |
+
"Source": "Repository",
|
1159 |
+
"Repository": "CRAN",
|
1160 |
+
"Requirements": [
|
1161 |
+
"R",
|
1162 |
+
"Rcpp",
|
1163 |
+
"plyr",
|
1164 |
+
"stringr"
|
1165 |
+
],
|
1166 |
+
"Hash": "bb5996d0bd962d214a11140d77589917"
|
1167 |
+
},
|
1168 |
+
"rlang": {
|
1169 |
+
"Package": "rlang",
|
1170 |
+
"Version": "1.1.1",
|
1171 |
+
"Source": "Repository",
|
1172 |
+
"Repository": "CRAN",
|
1173 |
+
"Requirements": [
|
1174 |
+
"R",
|
1175 |
+
"utils"
|
1176 |
+
],
|
1177 |
+
"Hash": "a85c767b55f0bf9b7ad16c6d7baee5bb"
|
1178 |
+
},
|
1179 |
+
"rpart": {
|
1180 |
+
"Package": "rpart",
|
1181 |
+
"Version": "4.1.19",
|
1182 |
+
"Source": "Repository",
|
1183 |
+
"Repository": "CRAN",
|
1184 |
+
"Requirements": [
|
1185 |
+
"R",
|
1186 |
+
"grDevices",
|
1187 |
+
"graphics",
|
1188 |
+
"stats"
|
1189 |
+
],
|
1190 |
+
"Hash": "b3c892a81783376cc2204af0f5805a80"
|
1191 |
+
},
|
1192 |
+
"scales": {
|
1193 |
+
"Package": "scales",
|
1194 |
+
"Version": "1.2.1",
|
1195 |
+
"Source": "Repository",
|
1196 |
+
"Repository": "CRAN",
|
1197 |
+
"Requirements": [
|
1198 |
+
"R",
|
1199 |
+
"R6",
|
1200 |
+
"RColorBrewer",
|
1201 |
+
"farver",
|
1202 |
+
"labeling",
|
1203 |
+
"lifecycle",
|
1204 |
+
"munsell",
|
1205 |
+
"rlang",
|
1206 |
+
"viridisLite"
|
1207 |
+
],
|
1208 |
+
"Hash": "906cb23d2f1c5680b8ce439b44c6fa63"
|
1209 |
+
},
|
1210 |
+
"shape": {
|
1211 |
+
"Package": "shape",
|
1212 |
+
"Version": "1.4.6",
|
1213 |
+
"Source": "Repository",
|
1214 |
+
"Repository": "CRAN",
|
1215 |
+
"Requirements": [
|
1216 |
+
"R",
|
1217 |
+
"grDevices",
|
1218 |
+
"graphics",
|
1219 |
+
"stats"
|
1220 |
+
],
|
1221 |
+
"Hash": "9067f962730f58b14d8ae54ca885509f"
|
1222 |
+
},
|
1223 |
+
"sodium": {
|
1224 |
+
"Package": "sodium",
|
1225 |
+
"Version": "1.3.0",
|
1226 |
+
"Source": "Repository",
|
1227 |
+
"Repository": "CRAN",
|
1228 |
+
"Hash": "bd436c1e48dc1982125e4d955017724e"
|
1229 |
+
},
|
1230 |
+
"stringi": {
|
1231 |
+
"Package": "stringi",
|
1232 |
+
"Version": "1.7.12",
|
1233 |
+
"Source": "Repository",
|
1234 |
+
"Repository": "CRAN",
|
1235 |
+
"Requirements": [
|
1236 |
+
"R",
|
1237 |
+
"stats",
|
1238 |
+
"tools",
|
1239 |
+
"utils"
|
1240 |
+
],
|
1241 |
+
"Hash": "ca8bd84263c77310739d2cf64d84d7c9"
|
1242 |
+
},
|
1243 |
+
"stringr": {
|
1244 |
+
"Package": "stringr",
|
1245 |
+
"Version": "1.5.0",
|
1246 |
+
"Source": "Repository",
|
1247 |
+
"Repository": "CRAN",
|
1248 |
+
"Requirements": [
|
1249 |
+
"R",
|
1250 |
+
"cli",
|
1251 |
+
"glue",
|
1252 |
+
"lifecycle",
|
1253 |
+
"magrittr",
|
1254 |
+
"rlang",
|
1255 |
+
"stringi",
|
1256 |
+
"vctrs"
|
1257 |
+
],
|
1258 |
+
"Hash": "671a4d384ae9d32fc47a14e98bfa3dc8"
|
1259 |
+
},
|
1260 |
+
"survival": {
|
1261 |
+
"Package": "survival",
|
1262 |
+
"Version": "3.5-5",
|
1263 |
+
"Source": "Repository",
|
1264 |
+
"Repository": "CRAN",
|
1265 |
+
"Requirements": [
|
1266 |
+
"Matrix",
|
1267 |
+
"R",
|
1268 |
+
"graphics",
|
1269 |
+
"methods",
|
1270 |
+
"splines",
|
1271 |
+
"stats",
|
1272 |
+
"utils"
|
1273 |
+
],
|
1274 |
+
"Hash": "d683341b1fa2e8d817efde27d6e6d35b"
|
1275 |
+
},
|
1276 |
+
"swagger": {
|
1277 |
+
"Package": "swagger",
|
1278 |
+
"Version": "3.33.1",
|
1279 |
+
"Source": "Repository",
|
1280 |
+
"Repository": "CRAN",
|
1281 |
+
"Hash": "f28d25ed70c903922254157c11b0081d"
|
1282 |
+
},
|
1283 |
+
"sys": {
|
1284 |
+
"Package": "sys",
|
1285 |
+
"Version": "3.4.2",
|
1286 |
+
"Source": "Repository",
|
1287 |
+
"Repository": "CRAN",
|
1288 |
+
"Hash": "3a1be13d68d47a8cd0bfd74739ca1555"
|
1289 |
+
},
|
1290 |
+
"tibble": {
|
1291 |
+
"Package": "tibble",
|
1292 |
+
"Version": "3.2.1",
|
1293 |
+
"Source": "Repository",
|
1294 |
+
"Repository": "CRAN",
|
1295 |
+
"Requirements": [
|
1296 |
+
"R",
|
1297 |
+
"fansi",
|
1298 |
+
"lifecycle",
|
1299 |
+
"magrittr",
|
1300 |
+
"methods",
|
1301 |
+
"pillar",
|
1302 |
+
"pkgconfig",
|
1303 |
+
"rlang",
|
1304 |
+
"utils",
|
1305 |
+
"vctrs"
|
1306 |
+
],
|
1307 |
+
"Hash": "a84e2cc86d07289b3b6f5069df7a004c"
|
1308 |
+
},
|
1309 |
+
"tidyr": {
|
1310 |
+
"Package": "tidyr",
|
1311 |
+
"Version": "1.3.0",
|
1312 |
+
"Source": "Repository",
|
1313 |
+
"Repository": "CRAN",
|
1314 |
+
"Requirements": [
|
1315 |
+
"R",
|
1316 |
+
"cli",
|
1317 |
+
"cpp11",
|
1318 |
+
"dplyr",
|
1319 |
+
"glue",
|
1320 |
+
"lifecycle",
|
1321 |
+
"magrittr",
|
1322 |
+
"purrr",
|
1323 |
+
"rlang",
|
1324 |
+
"stringr",
|
1325 |
+
"tibble",
|
1326 |
+
"tidyselect",
|
1327 |
+
"utils",
|
1328 |
+
"vctrs"
|
1329 |
+
],
|
1330 |
+
"Hash": "e47debdc7ce599b070c8e78e8ac0cfcf"
|
1331 |
+
},
|
1332 |
+
"tidyselect": {
|
1333 |
+
"Package": "tidyselect",
|
1334 |
+
"Version": "1.2.0",
|
1335 |
+
"Source": "Repository",
|
1336 |
+
"Repository": "CRAN",
|
1337 |
+
"Requirements": [
|
1338 |
+
"R",
|
1339 |
+
"cli",
|
1340 |
+
"glue",
|
1341 |
+
"lifecycle",
|
1342 |
+
"rlang",
|
1343 |
+
"vctrs",
|
1344 |
+
"withr"
|
1345 |
+
],
|
1346 |
+
"Hash": "79540e5fcd9e0435af547d885f184fd5"
|
1347 |
+
},
|
1348 |
+
"timeDate": {
|
1349 |
+
"Package": "timeDate",
|
1350 |
+
"Version": "4022.108",
|
1351 |
+
"Source": "Repository",
|
1352 |
+
"Repository": "CRAN",
|
1353 |
+
"Requirements": [
|
1354 |
+
"R",
|
1355 |
+
"graphics",
|
1356 |
+
"methods",
|
1357 |
+
"stats",
|
1358 |
+
"utils"
|
1359 |
+
],
|
1360 |
+
"Hash": "3f7918d2b36c17ffe07cddba6458453e"
|
1361 |
+
},
|
1362 |
+
"timechange": {
|
1363 |
+
"Package": "timechange",
|
1364 |
+
"Version": "0.2.0",
|
1365 |
+
"Source": "Repository",
|
1366 |
+
"Repository": "CRAN",
|
1367 |
+
"Requirements": [
|
1368 |
+
"R",
|
1369 |
+
"cpp11"
|
1370 |
+
],
|
1371 |
+
"Hash": "8548b44f79a35ba1791308b61e6012d7"
|
1372 |
+
},
|
1373 |
+
"tzdb": {
|
1374 |
+
"Package": "tzdb",
|
1375 |
+
"Version": "0.4.0",
|
1376 |
+
"Source": "Repository",
|
1377 |
+
"Repository": "CRAN",
|
1378 |
+
"Requirements": [
|
1379 |
+
"R",
|
1380 |
+
"cpp11"
|
1381 |
+
],
|
1382 |
+
"Hash": "f561504ec2897f4d46f0c7657e488ae1"
|
1383 |
+
},
|
1384 |
+
"utf8": {
|
1385 |
+
"Package": "utf8",
|
1386 |
+
"Version": "1.2.3",
|
1387 |
+
"Source": "Repository",
|
1388 |
+
"Repository": "CRAN",
|
1389 |
+
"Requirements": [
|
1390 |
+
"R"
|
1391 |
+
],
|
1392 |
+
"Hash": "1fe17157424bb09c48a8b3b550c753bc"
|
1393 |
+
},
|
1394 |
+
"vctrs": {
|
1395 |
+
"Package": "vctrs",
|
1396 |
+
"Version": "0.6.3",
|
1397 |
+
"Source": "Repository",
|
1398 |
+
"Repository": "CRAN",
|
1399 |
+
"Requirements": [
|
1400 |
+
"R",
|
1401 |
+
"cli",
|
1402 |
+
"glue",
|
1403 |
+
"lifecycle",
|
1404 |
+
"rlang"
|
1405 |
+
],
|
1406 |
+
"Hash": "d0ef2856b83dc33ea6e255caf6229ee2"
|
1407 |
+
},
|
1408 |
+
"vetiver": {
|
1409 |
+
"Package": "vetiver",
|
1410 |
+
"Version": "0.2.4",
|
1411 |
+
"Source": "Repository",
|
1412 |
+
"Repository": "CRAN",
|
1413 |
+
"Requirements": [
|
1414 |
+
"R",
|
1415 |
+
"bundle",
|
1416 |
+
"butcher",
|
1417 |
+
"cereal",
|
1418 |
+
"cli",
|
1419 |
+
"ellipsis",
|
1420 |
+
"fs",
|
1421 |
+
"generics",
|
1422 |
+
"glue",
|
1423 |
+
"hardhat",
|
1424 |
+
"lifecycle",
|
1425 |
+
"magrittr",
|
1426 |
+
"pins",
|
1427 |
+
"purrr",
|
1428 |
+
"rapidoc",
|
1429 |
+
"readr",
|
1430 |
+
"rlang",
|
1431 |
+
"tibble",
|
1432 |
+
"vctrs",
|
1433 |
+
"withr"
|
1434 |
+
],
|
1435 |
+
"Hash": "88889073bf985719a33cf5d58f9bd4ba"
|
1436 |
+
},
|
1437 |
+
"viridisLite": {
|
1438 |
+
"Package": "viridisLite",
|
1439 |
+
"Version": "0.4.2",
|
1440 |
+
"Source": "Repository",
|
1441 |
+
"Repository": "CRAN",
|
1442 |
+
"Requirements": [
|
1443 |
+
"R"
|
1444 |
+
],
|
1445 |
+
"Hash": "c826c7c4241b6fc89ff55aaea3fa7491"
|
1446 |
+
},
|
1447 |
+
"vroom": {
|
1448 |
+
"Package": "vroom",
|
1449 |
+
"Version": "1.6.3",
|
1450 |
+
"Source": "Repository",
|
1451 |
+
"Repository": "CRAN",
|
1452 |
+
"Requirements": [
|
1453 |
+
"R",
|
1454 |
+
"bit64",
|
1455 |
+
"cli",
|
1456 |
+
"cpp11",
|
1457 |
+
"crayon",
|
1458 |
+
"glue",
|
1459 |
+
"hms",
|
1460 |
+
"lifecycle",
|
1461 |
+
"methods",
|
1462 |
+
"progress",
|
1463 |
+
"rlang",
|
1464 |
+
"stats",
|
1465 |
+
"tibble",
|
1466 |
+
"tidyselect",
|
1467 |
+
"tzdb",
|
1468 |
+
"vctrs",
|
1469 |
+
"withr"
|
1470 |
+
],
|
1471 |
+
"Hash": "8318e64ffb3a70e652494017ec455561"
|
1472 |
+
},
|
1473 |
+
"webutils": {
|
1474 |
+
"Package": "webutils",
|
1475 |
+
"Version": "1.1",
|
1476 |
+
"Source": "Repository",
|
1477 |
+
"Repository": "CRAN",
|
1478 |
+
"Requirements": [
|
1479 |
+
"curl",
|
1480 |
+
"jsonlite"
|
1481 |
+
],
|
1482 |
+
"Hash": "75d8b5b05fe22659b54076563f83f26a"
|
1483 |
+
},
|
1484 |
+
"whisker": {
|
1485 |
+
"Package": "whisker",
|
1486 |
+
"Version": "0.4.1",
|
1487 |
+
"Source": "Repository",
|
1488 |
+
"Repository": "CRAN",
|
1489 |
+
"Hash": "c6abfa47a46d281a7d5159d0a8891e88"
|
1490 |
+
},
|
1491 |
+
"withr": {
|
1492 |
+
"Package": "withr",
|
1493 |
+
"Version": "2.5.0",
|
1494 |
+
"Source": "Repository",
|
1495 |
+
"Repository": "CRAN",
|
1496 |
+
"Requirements": [
|
1497 |
+
"R",
|
1498 |
+
"grDevices",
|
1499 |
+
"graphics",
|
1500 |
+
"stats"
|
1501 |
+
],
|
1502 |
+
"Hash": "c0e49a9760983e81e55cdd9be92e7182"
|
1503 |
+
},
|
1504 |
+
"yaml": {
|
1505 |
+
"Package": "yaml",
|
1506 |
+
"Version": "2.3.7",
|
1507 |
+
"Source": "Repository",
|
1508 |
+
"Repository": "CRAN",
|
1509 |
+
"Hash": "0d0056cc5383fbc240ccd0cb584bf436"
|
1510 |
+
}
|
1511 |
+
}
|
1512 |
+
}
|