-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathui.R
69 lines (54 loc) · 3.03 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
bootstrapPage(
htmlTemplate(filename = "www/index.html",
panel_gen = fluidPage(
column(width = 3,
material_card(title = "",
pickerInput(label = "State", inputId = "var", choices = unique(base_color$STATE_NAME),
multiple = T,
options = opts,
selected = unique(base_color$STATE_NAME)
),
pickerInput(label = "Stressor type", inputId = "stress", choices = unique(stressor$stressor),
multiple = T,
options = opts,
selected = unique(stressor$stressor)
),
pickerInput(label = "Year", inputId = "year", choices = unique(stressor$year),
multiple = T,
options = opts,
selected = unique(stressor$year)
),
pickerInput(label = "Period of the year", inputId = "period", choices = unique(stressor$months),
multiple = T,
options = opts,
selected = unique(stressor$months)
),
reactableOutput("bees_gen")
)
),
column(width = 9,
column(
width = 8,
material_card(title = "",mapboxerOutput("mapa", width = 470, height = 820))
),
column(width = 4,
material_card(title = "",
echarts4rOutput("grafico1", height = 250),
echarts4rOutput("grafico2", height = 250)
)
)
),
column(width = 12,
material_card(title = "",
prettyRadioButtons(
inputId = "type_table",
label = "Group by:",
choices = c("State", "Year"),
inline = T
),
reactableOutput("table_conc")
)
)
)
)
)