-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathui.R
294 lines (230 loc) · 7.4 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
ui <- fluidPage(
theme = shinytheme("superhero"),
navbarPage(
# Page title
# Displayed to the left of the navigation bar
title = div(img(
src = "tt_sq.png",
height = "86px"
),
HTML(paste0(
"<a href=", shQuote(paste0("https://www.scottishtecharmy.org/")), target="_blank", ">",
img(
src = "sta.png",
height = "86px"
), "</a>"
)),
style = "position: relative; top: -10px; left: -15px"
),
windowTitle = "Scotland COVID-19 Visualisation",
# 1st Main Tab
tabPanel(
title = h3("Overview"),
column(12, # Start of top title row
column(6,
titlePanel("COVID-19 in Scotland"),
helpText("What was the situation like in Scotland previously?")
),
column(6,
titlePanel("Data Selection"),
helpText("Let's look at changes over time")
)
), # End of top title row
fluidRow( # Start of 2nd Data selection row
column(12,
# column(3, # 1st quarter
column(3, # Dateslider
sliderInput(
"date",
h3("Date"),
min = min(management$date_code),
max = max(management$date_code),
value = max(management$date_code)
)
), # Dateslider
column(3, # Heatmap select
selectInput(
"data",
label = h3("Heat Map Info"),
choices = list(
"COVID-19 positive cases" = "Testing - Cumulative people tested for COVID-19 - Positive",
"COVID-19 patients in ICU - Total",
"COVID-19 patients in hospital - Suspected",
"COVID-19 patients in hospital - Confirmed"
),
selected = "Testing - Cumulative people tested for COVID-19 - Positive"
)
), # Heatmap select
column(3, # Graph Region Select
selectInput(inputId = "area_choice",
label = h3("Region"),
choices = area_names,
selected = "Scotland"
)), # Graph Region Select
column(3, # Dataset select
selectInput(inputId = "data_set_choice",
label = h3("Data Set"),
choices = data_sets,
multiple = FALSE
)) # Dataset select
)
), # Fluidrow - 2nd row end
fluidRow( # Fluidrow charts - 3rd row start
column(12,
column(6,
leafletOutput("scot_plot", height = 550) %>%
withSpinner(color = "#0dc5c1")
),
column(6,
plotOutput("covid_plot", height = 550) %>%
withSpinner(color = "#0dc5c1")
)
)
), # Fluidrow charts - 3rd row end
fluidRow( # Fluid row variable selection - Start
column(12,
column(6,"Info"),
column(6,
checkboxGroupInput("variable_choice",
label = h3("Selected Data"),
choices = NULL,
selected = NULL)
)
)
) # Fluid row variable selection - End
), # End of 1st main tab
# Start of 1st main tab
tabPanel(
title = h3("Local"),
# App title
titlePanel("COVID-19 at a local level"),
sidebarLayout(
# Sidebar with a slider input for date and selector for data
# sidebarPanel(
# width = 3,
# h3("Local Authorities"),
# checkboxInput("bar", "All/None", value = T),
# checkboxGroupInput("local_auth",
# label = NULL,
# inline = TRUE,
# choices = local_authorities,
# selected = "All/None"
# )
# ),
sidebarPanel(
width = 12,
sliderInput(
"date_2",
h3("Date"),
min = min(traffic_data$date),
max = max(traffic_data$date),
value = max(traffic_data$date)
)
),
mainPanel(
width = 6,
tabsetPanel(
type = "tabs",
tabPanel(
"Traffic",
h4("Traffic Levels"),
# column(6,
leafletOutput("traffic_plot", width = 900, height = 500)
%>% withSpinner(color = "#0dc5c1")
),
tabPanel(
"Deaths",
h4("Total COVID 19 related deaths to date"),
# column(6,
leafletOutput("scot_covid_plot", width = 900, height = 500)
%>% withSpinner(color = "#0dc5c1"),
tags$a(href = "https://statistics.gov.scot/data/coronavirus-covid-19-management-information", target="_blank", "Data Source"),
br(),
# column(6,
"Note: Some locations are named IZ followed by a number, please refer",
tags$a(href = "https://www2.gov.scot/Topics/Statistics/sns/SNSRef/DZresponseplan", target="_blank", "here for more information.")
),
tabPanel(
"Cardiovascular Prescriptions",
h4("Number of Cardiovascular Prescriptions in Scotland"),
plotOutput("prescriptions"),
tags$a(href = "https://scotland.shinyapps.io/phs-covid-wider-impact/", target="_blank", "Data Source")
)
)
) # main panel
)# fluid row
), # End of 2nd main tab
tabPanel(
title = h3("Indepth"),
),
tabPanel(
title = h3("About Us"),
# App title
titlePanel(div(img(
src = "tt_text.jpg",
width = "100%"
)
)
),
fluidRow(
column(1),
column(2,
align = "center",
tags$a(
href = "https://www.linkedin.com/in/rhiannon-batstone-076191120", target="_blank",
img(
src = "rb.jpg",
width = "85%"
),
),
h3("Rhi Batstone")
),
column(2,
align = "center",
tags$a(
href = "https://www.linkedin.com/in/richard--clark", target="_blank",
img(
src = "rc.jpg",
width = "85%"
)
),
h3("Ric Clark")
),
column(2,
align = "center",
tags$a(
href = "https://www.linkedin.com/in/jonathancylau", target="_blank",
img(
src = "jl.jpg",
width = "85%"
)
),
h3("Jonathan Lau")
),
column(2,
align = "center",
tags$a(
href = "https://www.linkedin.com/in/euan-robertson-5845582", target="_blank",
img(
src = "er.jpg",
width = "85%"
)
),
h3("Euan Robertson")
),
column(2,
align = "center",
tags$a(
href = "https://www.linkedin.com/in/alstev", target="_blank",
img(
src = "as.jpg",
width = "85%"
)
),
h3("Allan Stevenson")
),
column(1)
)
)# End of 3rd main tab
) # Nav bar
) # End of UI