-
Notifications
You must be signed in to change notification settings - Fork 15
/
global.R
16 lines (15 loc) · 843 Bytes
/
global.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
library(rlang) # back-end toolbox for R
library(dplyr) # data manipulation
library(purrr) # functional programming and iteration
library(ggplot2) # static graphics engine
library(showtext) # using fonts more easily in R graphs
library(scales) # scaling ggplot2 axes
library(shiny) # core shiny package
library(shinyWidgets) # widget extension for shiny
library(bslib) # shiny layout and theme styling
library(thematic) # styling R base and ggplot2 graphics
library(DT) # R interface to the JavaScript library DataTables
library(leaflet) # R interface to the JavaScript library Leaflet
library(rsconnect) # easy deployment of apps to shinyapps.io and more
file_paths <- fs::dir_ls(c("modules", "helpers"))
map(file_paths, function(x){source(x)})