-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackages.R
57 lines (53 loc) · 1.22 KB
/
packages.R
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
50
51
52
53
54
55
56
## library() calls go here
library(conflicted)
library(dotenv)
library(drake)
## data cleaning
library(janitor)
library(naniar)
## imputation
library(ipa)
library(mice)
library(miceRanger)
## reporting
library(rmarkdown)
library(glue)
library(table.glue)
library(knitr)
library(kableExtra)
library(gtsummary)
library(gt)
library(synthpop)
## data analysis
library(tidyverse)
library(rstanarm)
library(tidybayes)
library(data.table)
library(magrittr)
library(survival)
library(xgboost)
library(xgboost.surv)
library(tidymodels)
library(randomForestSRC)
library(MASS)
library(VIM)
library(Hmisc)
library(party)
## model evaluation
library(riskRegression)
library(nricens)
conflict_prefer("roc", "pROC")
conflict_prefer("complete", "mice")
conflict_prefer("filter", "dplyr")
conflict_prefer("select", "dplyr")
conflict_prefer("slice", "dplyr")
conflict_prefer('summarise', 'dplyr')
conflict_prefer('summarize', 'dplyr')
conflict_prefer('select', 'dplyr')
conflict_prefer("gather", "tidyr")
conflict_prefer("set_names", "purrr")
conflict_prefer("fixed", "stringr")
conflict_prefer("all_numeric", "recipes")
conflict_prefer("matches", "tidyselect")
conflict_prefer("impute", "miceRanger")
conflict_prefer("R2", "rstanarm")