[bb6f8d]: / R / packages.R

Download this file

49 lines (45 with data), 1.8 kB

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