forked from david-wavrock/ije-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ui.r
440 lines (367 loc) · 24.6 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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
#shiny::runApp("//scan01/Users/yanzh/IJE/2020/code/shiny", host = "0.0.0.0", port=1300)
library(shiny)
library(shinythemes)
library(dplyr)
library(leaflet)
library(DT)
ui<-fluidPage(
includeCSS('www/style.css'),
tags$h1("Inter-Jurisdictional Employment (IJE) Dashboard",align="center"),
tabsetPanel(
tabPanel("Using This App",
mainPanel(
p("Text goes here")
)),
tabPanel("National",
sidebarLayout(
sidebarPanel(
selectInput("YearInput", "Select Year",
choices = c(beginy:endy),
selected =c(endy)),
radioButtons("SeriesInput", "Select Series",
choices = c("Employees","Income"),
selected=c("Employees")),
radioButtons("TypeInput", tags$div(HTML(paste0("Select Employment Type",tags$sup('3')))),
choices = c("Incoming","Outgoing"),
selected =c("Incoming")),
radioButtons("GenderInput", "Select Gender",
choices = c("Both","Male","Female"),
selected =c("Both")),
radioButtons("IncomeSource", tags$div(HTML(paste0("Select Income Source",tags$sup('4')))),
choices = c("Inside the Jurisdiction","Outside the Jurisdiction"),
selected =c("Inside the Jurisdiction")),
radioButtons("SourceInput", tags$div(HTML(paste0("Data Source",tags$sup('2')))),
choices = c("T1 Personal Master File", "T1 Historical File"),
selected = c("T1 Personal Master File")),
actionButton('NationalGen','Refresh Plot'),
hr(),
selectInput("tableN", "Choose a table to download: ",
choices = c("Filtered National Table","Full National Table")),
uiOutput("conditional_download")
),
mainPanel(
## render object occurs here
# leafletOutput("PRcount",height=600),
mainmapUI("mainmap"),
# br(),
hr(),
# plotOutput("PRbar"),
# br(),
helpText("1. Only employees aged 18 or older who earned more than $1,000 (in 2016 constant dollars) are included."),
helpText("2. Data from T1 Personal Master File are derived from the T1 and T4 tax files. Data from T1 Historical File are derived from
the T1, T4 and the T1 historical personal master file. The T1 historical file includes late and re-assessed tax filers.
Because the T1 historical file is only available up to 2015, the last two years is forecasted using a 5-year average from both
the T4-T1 and the T4-T1-T1 historical file series."),
helpText("3. Incoming IJE are individuals who received T4 earnings from the selected jurisdiction but reported a different jurisdiction
of residence on their T1 tax returns. Outgoing IJE are individuals who identified as residing in the selected jurisdiction but
received T4 earnings from other jurisdictions. When 'Incoming' is selected, the base jurisdiction is the province or territory in
which they work and the target jurisdiction is their jurisdiction of residence (where they file T1 Genral), with the opposite being
true when 'Outgoing' is selected."),
helpText("4. IJEs can make income inside/outside their jurisdiction from different income sources. Selection of income source inside/outside
the jurisdiction has no effect on data maps when ‘Employees’ is selected as the data series."),
helpText("5. Numbers may not add up to totals because of rounding. Counts less than 10 are suppressed. Additional counts may also be
suppressed if the sum of all suppressed counts is less than 10. Counts are rounded to the nearest 5, and earnings are rounded to
the nearest 100."),
helpText("Source: Statistics Canada, Canadian Employer-Employee Dynamics Database.")
)
)
),
tabPanel("Jurisdiction",
sidebarLayout(
sidebarPanel(
actionButton('JurisdGen','Refresh Plot'),
selectInput("ProvinceInput", "Select Jurisdiction",
choices = c("Newfoundland and Labrador","Prince Edward Island","Nova Scotia","New Brunswick",
"Quebec", "Ontario", "Manitoba","Saskatchewan","Alberta","British Columbia",
"Yukon", "Northwest Territories","Nunavut"),
selected =c("Newfoundland and Labrador")),
sliderInput("YRInput", "Year Range",
beginy, endy, c(beginy, endy),
sep=''),
radioButtons("GDInput", "Select Gender",
choices = c("Both","Male","Female"),
selected =c("Both")),
radioButtons("DSInput", tags$div(HTML(paste0("Data Source",tags$sup('2')))),
choices = c("T1 Personal Master File", "T1 Historical File"),
selected = c("T1 Personal Master File")),
selectInput("tableIn", "Choose a table to download: ",
choices = c("Filtered Table","Full Table")
),
downloadButton("downloadPtable", "Download")
),
mainPanel(
plotlyOutput("PRtrend",height=525),
br(),
# plotlyOutput("PRtrend2",height=450),
# br(),
plotlyOutput("PRInctrend",height=525),
# br(),
hr(),
## what does this do??
### added a line of code here too `.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover `###
# tags$style(HTML("
# .dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_processing, .dataTables_wrapper .dataTables_paginate, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
# color: #ffffff;
# }
# ### ADD THIS HERE ###
# .dataTables_wrapper .dataTables_paginate .paginate_button{box-sizing:border-box;display:inline-block;min-width:1.5em;padding:0.5em 1em;margin-left:2px;text-align:center;text-decoration:none !important;cursor:pointer;*cursor:hand;color:#ffffff !important;border:1px solid transparent;border-radius:2px}
#
# ###To change text and background color of the `Select` box ###
# .dataTables_length select {
# color: #0E334A;
# background-color: #0E334A
# }
#
# ###To change text and background color of the `Search` box ###
# .dataTables_filter input {
# color: #0E334A;
# background-color: #0E334A
# }
#
# thead {
# color: #ffffff;
# }
#
# tbody {
# color: #000000;
# }
#
# "
#
# )
# ),
#
# ## what does this do?
# DT::dataTableOutput("PRtable"),
#br(),
helpText("1. Only employees aged 18 or older who earned more than $1,000 (in 2016 constant dollars) are included."),
helpText("2. Data from T1 Personal Master File are derived from the T1 and T4 tax files. Data from T1 Historical File are derived from
the T1, T4 and the T1 historical personal master file. The T1 historical file includes late and re-assessed tax filers. Because
the T1 historical file is only available up to 2015, the last two years is forecasted using a 5-year average from both the T4-T1
and the T4-T1-T1 historical file series."),
helpText("3. Incoming IJE are individuals who received T4 earnings from the selected jurisdiction but reported a different jurisdiction
of residence on their T1 tax returns. Outgoing IJE are individuals who identified as residing in the selected jurisdiction but
received T4 earnings from other jurisdictions. When 'Incoming' is selected, the base jurisdiction is the province or territory in
which they work and the target jurisdiction is their jurisdiction of residence (where they file T1 Genral), with the opposite being
true when 'Outgoing' is selected."),
helpText("4. Incoming IJE's earnings are defined as their T4 earnings received from the selected jurisdiction. Outgoing IJE's earnings are
defined as their T4 earnings received from non-residential jurisdictions."),
helpText("5. Numbers may not add up to totals because of rounding. Counts less than 10 are suppressed. Additional counts may also be suppressed
if the sum of all suppressed counts is less than 10. Counts are rounded to the nearest 5, and earnings are rounded to the nearest 100."),
helpText("Source: Statistics Canada, Canadian Employer-Employee Dynamics Database.")
)
)
),
tabPanel("Industry",
sidebarLayout(
sidebarPanel(
actionButton('IndustryGen','Refresh Plot'),
selectInput("ProIndInput", "Select Jurisdiction",
choices = c("Newfoundland and Labrador","Prince Edward Island","Nova Scotia","New Brunswick",
"Quebec", "Ontario", "Manitoba","Saskatchewan","Alberta","British Columbia",
"Yukon", "Northwest Territories","Nunavut"),
selected =c("Newfoundland and Labrador")),
sliderInput("YRInd", "Year Range",
beginy, endy, c(beginy, endy),
sep=''),
radioButtons('IncOutIndustry',tags$div(HTML(paste0("Select Employment Type",tags$sup('3')))),
choices = c('Incoming','Outgoing'),
selected = c('Incoming')),
checkboxGroupInput("IndustryInput", tags$div(HTML(paste0("Select Industry",tags$sup('3')))),
choices = indList,
selected = indList[1:12]),
checkboxInput("selectAllInd","Select/Deselect All"),
selectInput("tableInd", "Choose a table to download: ",
choices = c("Filtered Industry Table","Full Industry Table")),
downloadButton("downloadItable", "Download")
),
mainPanel(
plotlyOutput("IndCount",height=600),
br(),
plotlyOutput("IndIncome",height=600),
# br(),
hr(),
### add your style inline css values here
### added a line of code here too `.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover `###
# tags$style(HTML("
# .dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_processing, .dataTables_wrapper .dataTables_paginate, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
# color: #ffffff;
# }
# ### ADD THIS HERE ###
# .dataTables_wrapper .dataTables_paginate .paginate_button{box-sizing:border-box;display:inline-block;min-width:1.5em;padding:0.5em 1em;margin-left:2px;text-align:center;text-decoration:none !important;cursor:pointer;*cursor:hand;color:#ffffff !important;border:1px solid transparent;border-radius:2px}
#
# ###To change text and background color of the `Select` box ###
# .dataTables_length select {
# color: #0E334A;
# background-color: #0E334A
# }
#
# ###To change text and background color of the `Search` box ###
# .dataTables_filter input {
# color: #0E334A;
# background-color: #0E334A
# }
#
# thead {
# color: #ffffff;
# }
#
# tbody {
# color: #000000;
# }
#
# "
#
# )
# ),
#
#
# DT::dataTableOutput("Indtable"),
#br(),
helpText("1. Only employees aged 18 or older who earned more than $1,000 (in 2016 constant dollars) are included."),
helpText("2. These estimates are derived from the T1 and T4 tax files and do not include late and re-assessed
taxfilers from the T1 Historical personal master file."),
helpText("3. Incoming IJE are individuals who received T4 earnings from the selected jurisdiction but reported a different jurisdiction
of residence on their T1 tax returns. Outgoing IJE are individuals who identified as residing in the selected jurisdiction but
received T4 earnings from other jurisdictions. When 'Incoming' is selected, the base jurisdiction is the province or territory in
which they work and the target jurisdiction is their jurisdiction of residence (where they file T1 Genral), with the opposite being
true when 'Outgoing' is selected."),
helpText("4. When an employee has T4 earnings in more than one industry, they will be counted in the industry of the job in which the
employee has the highest T4 earnings."),
helpText("5. Industry categories are derived from the North American Industry Classification System (NAICS). ‘Other services’ include:
Administrative and support; Waste management and remediation services; Entertainment and recreation; Other services etc."),
helpText("6. Numbers may not add up to totals because of rounding. Counts less than 10 are suppressed. Additional counts may also be
suppressed if the sum of all suppressed counts is less than 10. Counts are rounded to the nearest 5, and earnings are rounded
to the nearest 100."),
helpText("Source: Statistics Canada, Canadian Employer-Employee Dynamics Database.")
)
)
),
tabPanel("Target Jurisdiction",
sidebarLayout(
sidebarPanel(
actionButton('TgtJurisdGen','Refresh Plot'),
selectInput("ProOPInput", "Select Base Jurisdiction",
choices = c("Newfoundland and Labrador","Prince Edward Island","Nova Scotia","New Brunswick",
"Quebec", "Ontario", "Manitoba","Saskatchewan","Alberta","British Columbia",
"Yukon", "Northwest Territories","Nunavut"),
selected =c("Newfoundland and Labrador")),
sliderInput("YRTP", "Year Range",
beginy, endy, c(beginy, endy),
sep=''),
radioButtons('IncOutTgtJuris',tags$div(HTML(paste0("Select Employment Type",tags$sup('3')))),
choices = c('Incoming','Outgoing'),
selected = c('Incoming')),
checkboxGroupInput('ProTPInput','Select Target Jurisdiction',
choices = provList,
selected = provList),
checkboxInput("selectAllProv","Select/Deselect All", value=T),
selectInput("tableTP", "Choose a table to download: ",
choices = c("Filtered TP Table","Full TP Table")),
downloadButton("downloadTPtable", "Download")
),
mainPanel(
plotlyOutput("TPcount",height=525),
br(),
plotlyOutput("TPincome",height=525),
# br(),
hr(),
helpText("1. Only employees aged 18 or older who earned more than $1,000 (in 2016 constant dollars) are included."),
helpText("2. These estimates are derived from the T1 and T4 tax files and do not include late and re-assessed
taxfilers from the T1 Historical personal master file."),
helpText("3. Incoming IJE are individuals who received T4 earnings from the selected jurisdiction but reported a different jurisdiction
of residence on their T1 tax returns. Outgoing IJE are individuals who identified as residing in the selected jurisdiction but
received T4 earnings from other jurisdictions. When 'Incoming' is selected, the base jurisdiction is the province or territory in
which they work and the target jurisdiction is their jurisdiction of residence (where they file T1 Genral), with the opposite being
true when 'Outgoing' is selected."),
helpText("4. When an outgoing IJE has T4 earnings in more than one jurisdiction, he/she will be counted in the jurisdiction of
the job in which the employee has the highest T4 earnings."),
helpText("5. Numbers may not add up to totals because of rounding. Counts less than 10 are suppressed. Additional counts may
also be suppressed if the sum of all suppressed counts is less than 10. Counts are rounded to the nearest 5, and earnings
are rounded to the nearest 100."),
helpText("Source: Statistics Canada, Canadian Employer-Employee Dynamics Database.")
)
)
),
tabPanel("Age Group",
sidebarLayout(
sidebarPanel(
actionButton('NationalGen','Refresh Plot'),
selectInput("ProAgeInput", "Select Jurisdiction",
choices = c("Newfoundland and Labrador","Prince Edward Island","Nova Scotia","New Brunswick",
"Quebec", "Ontario", "Manitoba","Saskatchewan","Alberta","British Columbia",
"Yukon", "Northwest Territories","Nunavut"),
selected =c("Newfoundland and Labrador")),
sliderInput("YRAge", "Year Range",
beginy, endy, c(beginy, endy),
sep=''),
radioButtons("TAgeInput", tags$div(HTML(paste0("Select Employment Type",tags$sup('3')))),
choices = c("Incoming","Outgoing", "Resident"),
selected =c("Incoming")),
checkboxGroupInput( "AgeInput", "Select Age Groups",
choices = ageList,
selected = ageList),
checkboxInput('selectAllAge','Select/Deselect All',value=T),
radioButtons("GDAgeInput", "Select Gender",
choices = c("Both","Male","Female"),
selected =c("Both")),
selectInput("tableAge", "Choose a table to download: ",
choices = c("Filtered Age Table","Full Age Table")),
downloadButton("downloadAtable", "Download")
),
mainPanel(
plotlyOutput("Agetrend",height=525),
br(),
plotlyOutput("Agechange",height=525),
# br(),
hr(),
helpText("1. Only employees aged 18 or older who earned more than $1,000 (in 2016 constant dollars) are included."),
helpText("2. These estimates are derived from the T1 and T4 tax files and do not include late and re-assessed
taxfilers from the T1 Historical personal master file."),
helpText("3. Incoming IJE are individuals who received T4 earnings from the selected jurisdiction but reported a different jurisdiction
of residence on their T1 tax returns. Outgoing IJE are individuals who identified as residing in the selected jurisdiction but
received T4 earnings from other jurisdictions. When 'Incoming' is selected, the base jurisdiction is the province or territory in
which they work and the target jurisdiction is their jurisdiction of residence (where they file T1 Genral), with the opposite being
true when 'Outgoing' is selected."),
helpText("4. Numbers may not add up to totals because of rounding. Counts less than 10 are suppressed. Additional counts may also be suppressed
if the sum of all suppressed counts is less than 10. Counts are rounded to the nearest 5, and earnings are rounded to the nearest 100."),
helpText("Source: Statistics Canada, Canadian Employer-Employee Dynamics Database.")
)
)
)#,
# tabPanel("Reference",
# navlistPanel(
# tabPanel("Inter-jurisdictional Employees",
# tags$head(
# tags$style("label{font-family: 'Lobster', cursive;}")),
# h3( "Inter-jurisdictional employees are paid employment of individuals who maintain a permanent residence in a given province/territory while reporting
# earnings from a different province/territory"))
#
# ),
# navlistPanel(
# tabPanel("Data Source(s)",
# tags$head(
# tags$style("label{font-family: 'Lobster', cursive;}")),
# h3( "The data source for this project is the Canadian Employer-Employee Dynamics Database
# (CEEDD)"))
# ),
#
# navlistPanel(
# tabPanel("User Guide",
# tags$head(
# tags$style("label{font-family: 'Lobster', cursive;}")),
# h3("Click", downloadLink('downloadGuide','Here'), "to Download user Guide"
# ))
# ),
# navlistPanel(
# tabPanel("Datasets",
# tags$head(
# tags$style("label{font-family: 'Lobster', cursive;}")),
# h3("Datasets are avaiable for download from", downloadLink('downloadVintage','Here')
# ))
#
# )
#
# )
)
)