-
Notifications
You must be signed in to change notification settings - Fork 1
/
packages.R
51 lines (49 loc) · 1.13 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
## library() calls go here
library(conflicted)
library(dotenv)
library(drake)
library(R.utils)
# data management
library(haven)
library(janitor)
library(magrittr)
# data analysis
library(foreach)
library(tidyverse)
library(tidymodels)
library(embed)
library(tidyposterior)
library(ranger)
library(survival)
library(rms)
library(obliqueRSF)
library(xgboost)
library(xgboost.surv)
library(riskRegression)
library(naniar)
library(MASS)
library(Hmisc)
library(rstanarm)
# reporting
library(table.glue)
library(tibbleOne)
library(officer)
library(glue)
library(flextable)
library(devEMF)
library(diagram)
library(magick)
library(paletteer)
library(ggdist)
library(ggsci)
library(cmprsk)
library(patchwork)
conflicted::conflict_prefer("roc", "pROC")
conflicted::conflict_prefer("filter", "dplyr")
conflicted::conflict_prefer("slice", "dplyr")
conflicted::conflict_prefer("select", "dplyr")
conflicted::conflict_prefer("summarise", "dplyr")
conflicted::conflict_prefer("summarize", "dplyr")
conflicted::conflict_prefer("gather", "tidyr")
conflicted::conflict_prefer("set_names", "purrr")
conflicted::conflict_prefer("plan", "drake")