-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbody.R
executable file
·36 lines (29 loc) · 1.02 KB
/
body.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
## Tab Items
## Introduction-----------------------------------------
source('intro/intro.R', local = TRUE)
intro <- tabItem(tabName = "intro", intro.box)
## Dashboard Boxes Example --------------------------------
source('DBboxes/ui.R', local = TRUE)
dbboxes <- tabItem(tabName = "dbboxes", dbboxes.box)
## Dashboard ----------------------------------------------
source('dashboard/ui.R', local = TRUE)
dashboard <- tabItem(tabName = "dashboard", dashboard.box)
## maps ------------------------------------------------
source('maps/ui.R', local = TRUE)
maps <- tabItem(tabName = "maps", maps.box)
## Topic Modeling -------------------------------------
source("LDAvis/ui.R", local = TRUE)
lda <- tabItem(tabName = "lda", lda.box)
## Acknowledgements ------------------------------------
source('acknowledgements/acknowledgements.R', local = TRUE)
ack <- tabItem(tabName = "ack", ack.box)
body <- dashboardBody(
tabItems(
intro,
dbboxes,
dashboard,
maps,
lda,
ack
)
)