-
Notifications
You must be signed in to change notification settings - Fork 2
/
ui.R
63 lines (54 loc) · 2.13 KB
/
ui.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
61
62
63
source("set-up.R")
shinyUI(
dashboardPage(
skin = "green",
dashboardHeader(title = "Sap Flow Analyzer"),
dashboardSidebar(
#br(), br(), br(),
sidebarMenu(menuOutput()),
br(), br(), #br(),
# br(), br(), br(),
tags$hr(),
tags$footer("Chair of Forest Biometrics", align = "center"),
tags$footer("and", align = "center"),
tags$footer("Systems Analysis", align = "center"),
tags$footer("Technische Universität", align = "center"),
tags$footer("Dresden", align = "center"),
tags$footer("2020 - 2024", align = "center"),
tags$hr()
),
dashboardBody(
tabItems(
tabItem(tabName = "about",
introOutput()),
tabItem(tabName = "sett",
settingsOutput()),
tabItem(tabName = "dat_upl",
dataUplOutput()),
tabItem(tabName = "dat_filter",
dataFilterOutput()),
tabItem(tabName = "dat_view",
fluidRow(dataViewOutput())),
tabItem(tabName = "k_des",
kDescriptionOutput()),
tabItem(tabName = "k_est",
kValueOutput()),
tabItem(tabName = "sf_des",
sdDescriptionOutput()),
tabItem(tabName = "sf_metrics",
sfDensityOutput()),
tabItem(tabName = "sf_flow",
sfRateOutput()),
tabItem(tabName = "uncert_i",
uncertaintyOutputI()),
tabItem(tabName = "uncert_c",
uncertaintyOutputC())
),
# style/ appearance
fluidPage(
tags$script(src = "project-settings.js"),
tags$link(href = "styles.css",
rel = "stylesheet")
)
)
))