-
Notifications
You must be signed in to change notification settings - Fork 0
/
.Rprofile
58 lines (53 loc) · 1.48 KB
/
.Rprofile
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
57
source("renv/activate.R")
# Librairies ====================================================================================================================
library(targets)
library(tarchetypes)
library(tidyverse)
library(tidymodels)
library(glmnet)
library(here)
library(fs)
library(qs)
library(lubridate)
library(fastDummies)
library(dtplyr)
library(hms)
library(stringr)
library(dtplyr)
library(conflicted)
library(embed)
library(glue)
library(R6)
library(torch)
library(luz)
library(poissonreg)
library(vip)
library(magrittr)
library(surveillance)
library(MASS)
library(xaringan)
library(kableExtra)
library(tictoc)
library(Hmisc)
library(innsight)
library(iml)
library(ggExtra)
library(grid)
# Conflits ======================================================================================================================
conflicted::conflicts_prefer(
dplyr::filter,
dplyr::select,
hms::hms,
purrr::set_names
)
# Options et thème ==============================================================================================================
options(scipen = 999)
theme_set(theme_bw())
# Lire les fonctions ============================================================================================================
walk(dir_ls("R/Autres"), source)
walk(dir_ls("R/Poisson models"), source)
walk(dir_ls("R/NB2 models"), source)
walk(dir_ls("R/MVNB models"), source)
walk(dir_ls("R/Preprocessing"), source)
walk(dir_ls("R/Permutation tests"), source)
walk(dir_ls("R/Partial Dependence"), source)