-
Notifications
You must be signed in to change notification settings - Fork 0
/
ui.R
153 lines (125 loc) · 2.18 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
ui = shiny::htmlTemplate(
# Index Page
"www/index.html",
latest_date = textOutput(
"latest_date",
inline = T
),
england = textOutput(
"england",
inline = T
),
wales = textOutput(
"wales",
inline = T
),
scotland = textOutput(
"scotland",
inline = T
),
northernireland = textOutput(
"northernireland",
inline = T
),
total_perc_vaccines_uk = textOutput(
"total_uk_perc",
inline = T
),
total_no_vaccines_uk = textOutput(
"total_uk_no",
inline = T
),
# England %
eng_vaccines_pc = textOutput(
"eng",
inline = T
),
# Wales %
wal_vaccines_pc = textOutput(
"wal",
inline = T
),
# Scotland %
sco_vaccines_pc = textOutput(
"sco",
inline = T
),
# NI %
ni_vaccines_pc = textOutput(
"ni",
inline = T
),
# Englnad No
eng_vaccines_no = textOutput(
"eng_no",
inline = T
),
# Wales No
wal_vaccines_no = textOutput(
"wal_no",
inline = T
),
# Scotland No
sco_vaccines_no = textOutput(
"sco_no",
inline = T
),
# NI No
ni_vaccines_no = textOutput(
"ni_no",
inline = T
),
# 2nd Dose
total_perc_vaccines_uk_2ndDose = textOutput(
"total_uk_perc_2ndDose",
inline = T
),
total_no_vaccines_uk_2ndDose = textOutput(
"total_uk_no_2ndDose",
inline = T
),
# England %
eng_vaccines_pc_2ndDose = textOutput(
"eng_2ndDose",
inline = T
),
# Wales %
wal_vaccines_pc_2ndDose = textOutput(
"wal_2ndDose",
inline = T
),
# Scotland %
sco_vaccines_pc_2ndDose = textOutput(
"sco_2ndDose",
inline = T
),
# NI %
ni_vaccines_pc_2ndDose = textOutput(
"ni_2ndDose",
inline = T
),
# Englnad No
eng_vaccines_no_2ndDose = textOutput(
"eng_no_2ndDose",
inline = T
),
# Wales No
wal_vaccines_no_2ndDose = textOutput(
"wal_no_2ndDose",
inline = T
),
# Scotland No
sco_vaccines_no_2ndDose = textOutput(
"sco_no_2ndDose",
inline = T
),
# NI No
ni_vaccines_no_2ndDose = textOutput(
"ni_no_2ndDose",
inline = T
),
# Plot
plot = plotlyOutput({
"plot"
})
)