-
Notifications
You must be signed in to change notification settings - Fork 0
/
Covid_notebook.Rmd
471 lines (318 loc) · 12.4 KB
/
Covid_notebook.Rmd
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
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
---
title: "Covid Rough Draft"
author: "Data Humanist"
date: "`r Sys.Date()`"
output:
html_document:
toc: yes
toc_float: yes
toc: default
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(
echo = TRUE,
fig.align = "center",
fig.fullwidth = TRUE,
message = FALSE,
warning = FALSE
)
```
```{r, libraries_data}
library(tidyverse)
library(here)
library(visdat)
library(reactable)
library(glue)
here()
load(here::here("tidy_data", "project_data.RData"))
# Custom breaks for the plots to come -------------------------------------
breaks_sc <- c(seq(0, 0.2, by = 0.05), .25, .50, .75)
breaks_sc1 <- c(seq(0, 20, by = 5), 25, 50, 75)
breaks_per <- seq(0.00, 0.14, by = 0.02)
breaks_per2 <- seq(0.00, 0.22, by = 0.02)
cust_cap <- "Replace with appropriate caption"
##
# coutesy of https://www.r-bloggers.com/2019/12/vignette-downloadable-tables-in-rmarkdown-with-the-dt-package/
create_dt <- function(x){
DT::datatable(x,
caption = cust_cap,
extensions = 'Buttons',
options = list(dom = 'Blfrtip',
buttons = c('copy', 'csv',
'excel', 'pdf', 'print'),
lengthMenu = list(c(10,25,50,-1), c(10,25,50,"All"))
) )
}
```
## Brief
This RMD generates the images and data tables. Primary data source: USA CDC, [Provisional Death Counts for COVID-19](https://www.cdc.gov/nchs/nvss/vsrr/covid_weekly/index.htm). Retrieved 19 January 2022. Deaths counts might lag slightly. Please read the CDC Disclaimer.
The clean dashboard version, with better graphics @ [Covid in the USA: 2021 vs. 2020](https://rpubs.com/Thom_JH/Covid_Relative_Risk)
Polemic commentary on these results at Substack: [American Exile](https://americanexile.substack.com/).
If you make use of this data or worksheet, please consider: http://buymeacoffee.com/datahumanist
Thank you!
Thank you.
## Big Picture
### Plots All
```{r}
all_chart <- All_Sexes_long %>%
mutate(Percentages = Ratio_Vals * 100) %>%
mutate(across(where(is.numeric), round, 2)) %>%
filter(Deaths_Type %in% c("With Covid","No Covid")) %>%
ggplot( aes(x = Age_Range, y = Percentages , fill = Deaths_Type) ) +
geom_bar(position="stack", stat="identity") +
facet_grid(Year ~ .) +
coord_flip() +
theme(legend.position = c(0.5, 0.5) ,
legend.background = element_rect(linetype = 2))+
scale_y_continuous( breaks = breaks_sc1) +
scale_fill_manual(values = c("#121121", "#FF4500") ) +
labs(title = "All Sexes: Covid vs. Non-Covid Deaths",
fill = "Death Types", x = "Age Ranges", y= "Percentages",
subtitle = "US CDC data for years 2021 & 2020",
caption = "Data Humanist, CC BY-SA 4.0") +
geom_hline(yintercept = breaks_sc1 , color = "white", lty = 3) +
geom_text( aes(label = (({Percentages}) %>% round(1)) ), size = 2.2,
vjust = "inward", hjust = "inward", color= "white")
all_chart
```
```{r}
rr_all <- Comp_2021_vs_2020_ALL %>%
mutate(across(where(is.numeric), round, 2)) %>%
ggplot(aes(x = Age_Range, y = Relative_Risk, fill = Relative_Risk)) +
geom_col() +
scale_fill_viridis_c(option = "D") +
guides(fill = "none") +
labs(title = "Relative Risk: Dying with Covid in 2021 vs. 2020",
subtitle = "US CDC data. Source stratified by Age Range.",
caption = "Data Humanist, CC BY-SA 4.0",
x = "Age Range", y = "Relative Risk") +
geom_hline(yintercept = 1, color = "white", lty = 3) +
geom_text( aes(label = paste0(round({Relative_Risk}, 2), "x" ) ), size = 3,
vjust = 1.5, color= "red")
rr_all
```
### Data Sets ALL
### Stats_All
#### reactable
```{r}
All_Sexes %>%
group_by( Age_Range, Year) %>%
summarise("Deaths with C19" = Deaths_with_Covid,
"Deaths All Causes" = Death_All_Causes,
"C19 to All Deaths (%)" = (C19_Ratio * 100) %>% round(2) ) %>%
reactable(., highlight = TRUE,
striped = TRUE,
pageSizeOptions = c(10, 25, 50, 100),
theme = reactableTheme(
stripedColor = "#EDEDED",
highlightColor = "#FFE4E1") )
```
#### knitr
```{r}
All_Sexes %>%
group_by( Age_Range, Year) %>%
summarise("Deaths with C19" = Deaths_with_Covid,
"Deaths All Causes" = Death_All_Causes,
"C19 to All Deaths (%)" = (C19_Ratio * 100) %>% round(2) )
```
#### DT
```{r}
cust_cap <- "CDC Data: Provisional COVID-19 Death Counts, 2020-2021: All Sexes"
All_Sexes %>%
group_by( Age_Range, Year) %>%
summarise("Deaths with C19" = Deaths_with_Covid,
"Deaths All Causes" = Death_All_Causes,
"C19 to All Deaths (%)" = (C19_Ratio * 100) %>%
round(2) ) %>% create_dt()
```
Note: going with DT.
### Count Plot
```{r}
all_count <- All_Sexes_long %>%
mutate(across(where(is.numeric), round, 2)) %>%
filter(Deaths_Type %in% c("With Covid","No Covid")) %>%
ggplot( aes(x = Age_Range, y= Deaths_Count, fill = Deaths_Type) ) +
geom_bar(position="stack", stat="identity") +
labs(title = "All Sexes: Covid vs. Non-Covid Deaths",
fill = "Death Types", x = "Age Ranges",
subtitle = "US CDC data for years 2021 & 2020",
caption = "Data Humanist, CC BY-SA 4.0",
y = "Death Count") +
facet_grid(Year ~ .) +
coord_flip() +
theme(legend.position = c(0.8, 0.15)) +
scale_fill_manual(values = c("#121121", "#FF4500"))
all_count
```
Note: count plots widely available online, and this one -- like those -- obscures the changes in percentages and relative risk.
## By Sex
### Female
```{r}
female_chart <- My_data_long %>%
mutate(Percentages = Ratio_Vals * 100) %>%
mutate(across(where(is.numeric), round, 2)) %>%
filter(Deaths_Type %in% c("With Covid","No Covid")) %>%
filter(Sex == "Female") %>%
ggplot( aes(x = Age_Range,
y = Percentages,
fill = Deaths_Type) ) +
geom_bar(position="stack", stat="identity") +
facet_grid(Year ~ .) +
scale_y_continuous(breaks = breaks_sc1 ) +
coord_flip() +
theme(legend.position = c(0.5, 0.5)) +
scale_fill_manual(values = c("#696969", "#FF4500") ) +
labs(title = "Female: Deaths w/ Covid vs. Non-Covid",
subtitle = "US CDC data for years 2021 & 2020",
caption = "Data Humanist, CC BY-SA 4.0",
y = "Percentages", x = "Age Range", fill = "Death Types") +
geom_hline(yintercept = breaks_sc , color = "#FFFFF0", lty = 3) +
geom_text(aes(label = (({Percentages} ) %>% round(1)) ), size = 2.2,
vjust = "inward", hjust = "inward", color= "#F8F8FF")
female_chart
```
```{r}
rr_female <- Comp_2021_vs_2020 %>%
filter(Sex == "Female") %>%
mutate(across(where(is.numeric), round, 2)) %>%
ggplot(aes(x = Age_Range, y = Relative_Risk, fill = Relative_Risk)) +
geom_col() +
scale_fill_viridis_c(option = "D") +
guides(fill = "none") +
labs(title = "Female Relative Risk: Dying with Covid in 2021 vs. 2020",
subtitle = "US CDC data. Source stratified by Age Range.",
caption = "Data Humanist, CC BY-SA 4.0",
x = "Age Ranges", y = "Relative Risk") +
geom_hline(yintercept = 1, color = "white", lty = 3) +
geom_text( aes(label = paste0(round({Relative_Risk}, 2), "x" ) ), size = 3,
vjust = 1.5, color= "red")
rr_female
```
```{r}
cust_cap <- "CDC Data for Female Sex: Provisional Death Counts for COVID-19"
Female_DT <- My_data %>%
group_by(Age_Range, Year) %>%
filter(Sex == "Female") %>%
summarise("Deaths with C19" = Deaths_with_Covid,
"Deaths All Causes" = Death_All_Causes,
"C19 to All Deaths (%)" = (C19_Ratio * 100) %>% round(2) )
create_dt(Female_DT)
```
### Male
```{r}
breaks_sc1 <- c(seq(0, 20, by = 5), 25, 50, 75)
male_chart <- My_data_long %>%
mutate(Percentages = Ratio_Vals * 100) %>%
mutate(across(where(is.numeric), round, 2)) %>%
filter(Deaths_Type %in% c("With Covid","No Covid")) %>%
filter(Sex == "Male") %>%
ggplot( aes(x = Age_Range,
y = Percentages ,
fill = Deaths_Type) ) +
geom_bar(position="stack", stat="identity") +
facet_grid(Year ~ .) +
scale_y_continuous(breaks = breaks_sc1 ) +
coord_flip() +
theme(legend.position = c(0.5, 0.5)) +
scale_fill_manual(values = c("#4682B4", "#FF4500")) +
labs(title = "Male: Deaths w/ Covid vs. Non-Covid",
subtitle = "US CDC data for years 2021 & 2020",
caption = "Data Humanist, CC BY-SA 4.0",
y = "Percentages", x = "Age Range", fill = "Death Types") +
geom_hline(yintercept = breaks_sc1 , color = "white", lty = 3) +
geom_text( aes(label = (({Percentages}) %>% round(1)) ), size = 2.2,
vjust = "inward", hjust = "inward", color= "#F8F8FF")
male_chart
```
```{r}
rr_male <- Comp_2021_vs_2020 %>%
filter(Sex == "Male") %>%
mutate(across(where(is.numeric), round, 2)) %>%
ggplot(aes(x = Age_Range, y = Relative_Risk, fill = Relative_Risk)) +
geom_col() +
scale_fill_viridis_c(option = "D") +
guides(fill = "none") +
labs(title = "Male Relative Risk: Dying with Covid in 2021 vs. 2020",
subtitle = "US CDC data. Source stratified by Age Range.",
caption = "Data Humanist, CC BY-SA 4.0",
x = "Age Ranges", y = "Relative Risk") +
geom_hline(yintercept = 1, color = "white", lty = 3) +
geom_text( aes(label = paste0(round({Relative_Risk}, 2), "x" ) ),
size = 3,
vjust = 1.5, color= "red")
rr_male
```
```{r}
cust_cap <- "CDC Data for Male Sex: Provisional Death Counts for COVID-19"
Male_DT <- My_data %>%
group_by(Age_Range, Year) %>%
filter(Sex == "Male") %>%
summarise("Deaths with C19" = Deaths_with_Covid,
"Deaths All Causes" = Death_All_Causes,
"C19 to All Deaths (%)" = (C19_Ratio * 100) %>% round(2) )
create_dt(Male_DT)
```
### Key Stats
```{r}
cust_cap <- "CDC Data: Provisional Death Counts for COVID-19"
RR_ALL_DT <- Comp_2021_vs_2020_ALL %>%
mutate(across(where(is.numeric), round, 4), Per_Change = Per_Change * 100)
create_dt(RR_ALL_DT)
```
```{r}
Comp_2021_vs_2020_ALL %>%
mutate(across(where(is.numeric), round, 4), Per_Change = Per_Change * 100) %>%
reactable(., highlight = TRUE, striped = TRUE,
theme = reactableTheme(stripedColor = "#EDEDED",
highlightColor = "#FFE4E1"))
```
### Diff Plot
```{r}
per_change_both <- Comp_2021_vs_2020 %>%
ggplot(aes(x = Age_Range, y = Per_Change, fill = Per_Change)) +
geom_col() +
facet_grid(Sex~ .) +
scale_fill_viridis_c() +
guides(fill = "none") +
labs(title = " 2021 vs 2020: % Change in Deaths with Covid",
subtitle = "US CDC data for years 2021 & 2020",
x = "Age Ranges", y = "Percentage Change",
caption = "Data Humanist, CC BY-SA 4.0") +
scale_y_continuous(labels = scales::percent_format(accuracy = 1),
breaks = breaks_per)
per_change_both
```
```{r}
both_rr <- Comp_2021_vs_2020 %>%
mutate(across(where(is.numeric), round, 2)) %>%
ggplot(aes(x = Age_Range, y = Relative_Risk, fill = Relative_Risk)) +
geom_col() +
facet_grid(Sex~ .) +
scale_fill_viridis_c(option = "D") +
guides(fill = "none") +
labs(title = "Relative Risk: Dying with Covid in 2021 vs. 2020",
subtitle = "US CDC data for years 2021 & 2020",
caption = "Data Humanist, CC BY-SA 4.0",
x = "Age Ranges", y = "Relative Risk") +
geom_hline(yintercept = 1, color = "white", lty = 3) +
geom_text( aes(label = paste0(round({Relative_Risk}, 2), "x" ) ), size = 3,
vjust = 1.5, color= "red")
both_rr
```
### Diff Stats
```{r}
cust_cap <- "2021 vs 2020: Changes in Death Percentage and Relative Risk"
Comp_2021_vs_2020_DT <- Comp_2021_vs_2020 %>%
mutate(across(where(is.numeric), round, 4), Per_Change = Per_Change * 100)
create_dt(Comp_2021_vs_2020_DT)
```
### Raw Data Sets
```{r}
cust_cap <- "Tidy Version: Long Format"
My_data_long %>%
mutate(across(where(is.numeric), round, 7)) %>%
create_dt()
All_Sexes_long%>%
mutate(across(where(is.numeric), round, 7)) %>%
create_dt()
```