Skip to content

Commit 1840b83

Browse files
authored
fix survdstr and mlr3extralearners (#28)
* fix survdstr and mlr3extralearners * remove pendensity * ...
1 parent 3afc042 commit 1840b83

File tree

3 files changed

+6
-12
lines changed

3 files changed

+6
-12
lines changed

mlr3book/Dockerfile

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,10 @@ RUN Rscript - <<'EOF'
3535
install.packages('pak', repos = sprintf('https://r-lib.github.io/p/pak/stable/%s/%s/%s', .Platform$pkgType, R.Version()$os, R.Version()$arch))
3636
pak::repo_add(
3737
mlr3universe = "https://mlr-org.r-universe.dev",
38-
multiverse = "https://community.r-multiverse.org",
39-
raphaels1 = "https://raphaels1.r-universe.dev")
38+
multiverse = "https://community.r-multiverse.org")
4039
pak::pak("mlr3verse", dependencies = TRUE, ask = FALSE)
4140
pak::pak(c(
42-
"mlr-org/mlr3cmprsk",
43-
"mlr-org/survdistr",
41+
"mlr3cmprsk",
4442
"bestNormalize",
4543
"clue",
4644
"counterfactuals",
@@ -75,7 +73,6 @@ pak::pak(c(
7573
"nloptr",
7674
"nycflights13",
7775
"partykit",
78-
"pendensity",
7976
"PMCMRplus",
8077
"precrec",
8178
"qgam",

mlr3full/Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,7 @@ pak::repo_add(
3636
raphaels1 = "https://raphaels1.r-universe.dev")
3737
pak::pak(c(
3838
catboost_url,
39-
"mlr-org/mlr3cmprsk",
40-
"mlr-org/survdistr",
39+
"mlr3cmprsk",
4140
"mlr3verse",
4241
"bbotk",
4342
"mlr3db",

mlr3gallery/Dockerfile

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,10 @@ RUN Rscript - <<'EOF'
1919
install.packages('pak', repos = sprintf('https://r-lib.github.io/p/pak/rc/%s/%s/%s', .Platform$pkgType, R.Version()$os, R.Version()$arch))
2020
pak::repo_add(
2121
mlr3universe = "https://mlr-org.r-universe.dev",
22-
multiverse = "https://community.r-multiverse.org",
23-
raphaels1 = "https://raphaels1.r-universe.dev")
22+
multiverse = "https://community.r-multiverse.org")
2423
pak::pak("mlr3verse", dependencies = TRUE, ask = FALSE)
2524
pak::pak(c(
26-
"mlr-org/mlr3cmprsk",
27-
"mlr-org/survdistr",
25+
"mlr3cmprsk",
2826
"adagio",
2927
"anytime",
3028
"apcluster",
@@ -91,7 +89,7 @@ pak::pak(c(
9189
"torchvision",
9290
"viridisLite"), ask = FALSE)
9391
torch::install_torch()
94-
pak::pak(c("precrec", "RSQLite", "DiceKriging", "FSelectorRcpp", "mlr-org/mlr3website"), dependencies = FALSE, ask = FALSE)
92+
pak::pak(c("precrec", "RSQLite", "DiceKriging", "FSelectorRcpp", "here", "mlr-org/mlr3website"), dependencies = FALSE, ask = FALSE)
9593
EOF
9694

9795
ENV PASSWORD=rstudio

0 commit comments

Comments
 (0)