forked from ntthung/MADA-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathui.R
33 lines (28 loc) · 800 Bytes
/
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
source('init.R')
fluidPage(
# Application title
titlePanel("MADA and Streamflow in Vietnam"),
# Sidebar with a slider input for year
sidebarLayout(
sidebarPanel(
radioButtons(
'timeMode',
'Time slice mode:',
choices = c('One year', 'Multi-year average')
),
uiOutput('yearSelector')
),
# Show a plot of the selected year
mainPanel(
plotOutput('madaPlot', width = 1000, height = 750),
HTML('
<div style="position: relative; bottom: 0; left: 0; width: 100%; text-align: right;">
<br>
<p> This is a prototype, version 0.0.0.9000. </p>
<p> Author: Nguyen Tan Thai Hung </p>
</div>'
)
)
)
)
# <a href="https://github.com/ntthung/MADA-explorer">GitHub</a>