|
a |
|
b/R/packages.R |
|
|
1 |
# 1. packages via checkpoint snapshot |
|
|
2 |
# the following packages will be loaded by checkpoint (all library instances) |
|
|
3 |
library(pec) |
|
|
4 |
library(glmnet) |
|
|
5 |
library(prioritylasso) |
|
|
6 |
library(CoxBoost) |
|
|
7 |
library(ipflasso) |
|
|
8 |
library(randomForestSRC) |
|
|
9 |
library(ranger) |
|
|
10 |
library(dplyr) |
|
|
11 |
library(data.table) |
|
|
12 |
library(survival) |
|
|
13 |
library(GRridge) |
|
|
14 |
library(batchtools) |
|
|
15 |
library(devtools) |
|
|
16 |
library(SGL) |
|
|
17 |
library(mboost) |
|
|
18 |
library(blockForest) |
|
|
19 |
library(tuneRanger) |
|
|
20 |
library(survAUC) |
|
|
21 |
|
|
|
22 |
# 2. packages not covered by checkpoint |
|
|
23 |
# some of the packages could not be snapshoted via checkpoint, so we cloned them |
|
|
24 |
|
|
|
25 |
# !!! |
|
|
26 |
# mlr branch with advanced survial methods not included in the CRAN version |
|
|
27 |
# !!! |
|
|
28 |
devtools::install_github("HerrMo/mlr@survival_probabilities_ibrier", |
|
|
29 |
dependencies = FALSE) |
|
|
30 |
devtools::install_github("HerrMo/GRridge") # is not coverd by checkpoint since bioconductor package |
|
|
31 |
install.packages(ipflasso) # version with two-step ipf-lasso was not available on CRAN at the time of experiment |
|
|
32 |
|
|
|
33 |
# additional clones |
|
|
34 |
# devtools::install_github("HerrMo/blockForest") |
|
|
35 |
# devtools::install_github("HerrMo/tuneRanger") |
|
|
36 |
# devtools::install_github("HerrMo/mboost") |
|
|
37 |
|
|
|
38 |
# If problems with devtools occure (under windows) |
|
|
39 |
# library(devtools) |
|
|
40 |
# |
|
|
41 |
# assignInNamespace("version_info", |
|
|
42 |
# c(devtools:::version_info, |
|
|
43 |
# list("3.5" = list(version_min = "3.3.0", |
|
|
44 |
# version_max = "99.99.99", |
|
|
45 |
# path = "bin"))), |
|
|
46 |
# "devtools") |
|
|
47 |
# |
|
|
48 |
# install_github("mlr-org/mlr@survival_probabilities_ibrier", |
|
|
49 |
# dependencies = FALSE) |