forked from r-clements/cluster-analysis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
body.R
60 lines (49 loc) · 1.34 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
## GET STARTED ----------------------------------------------------------------------
source('introduction/intro.R', local=TRUE)
start <- tabItem(
tabName = "start",
start.box
)
## UPLOAD ----------------------------------------------------------------------
source('fileUpload/ui.R', local=TRUE)
upload <- tabItem(
tabName = "upload",
upload.box
## fluidRow(
## box(
## plotOutput("plot1", height = 250)),
## box(
## title = "Controls",
## sliderInput("slider", "Number of observations:", 1, 100, 50)
## )
## )
)
## CLUSTER ---------------------------------------------------------------------
source('clustering/ui.R', local=TRUE)
cluster <- tabItem(
tabName = "cluster",
cluster.box
)
## RANKING ---------------------------------------------------------------------
source('ranking/ui.R', local=TRUE)
ranking <- tabItem(
tabName = "ranking",
ranking.box
)
## ACKNOWLEDGEMENTS ------------------------------------------------------------
source('acknowledgements/acknowledgements.R', local=TRUE)
acknowledgements <- tabItem(
tabName = "acknowledgements",
ack.box
)
## BODY ------------------------------------------------------------------------
body <- dashboardBody(
includeCSS("www/custom.css"),
tabItems(
start,
upload,
cluster,
ranking,
acknowledgements
)
)