Deaths by week, sex, 20-year age group and NUTS 3 region - demo_r_mwk3_20

Data - Eurostat

age

Code
demo_r_mwk3_20 %>%
  left_join(age, by = "age") %>%
  group_by(age, Age) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  {if (is_html_output()) print_table(.) else .}
age Age Nobs
TOTAL Total 3654437
Y60-79 From 60 to 79 years 3627460
Y_GE80 80 years or over 3627460
Y40-59 From 40 to 59 years 3627400
Y20-39 From 20 to 39 years 3627375
Y_LT20 Less than 20 years 3627325
UNK Unknown 3546889

sex

Code
demo_r_mwk3_20 %>%
  left_join(sex, by = "sex") %>%
  group_by(sex, Sex) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  {if (is_html_output()) print_table(.) else .}
sex Sex Nobs
T Total 8464037
M Males 8437167
F Females 8437142

unit

Code
demo_r_mwk3_20 %>%
  left_join(unit, by = "unit") %>%
  group_by(unit, Unit) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  {if (is_html_output()) print_table(.) else .}
unit Unit Nobs
NR Number 25338346

geo

Code
demo_r_mwk3_20 %>%
  left_join(geo, by = "geo") %>%
  group_by(geo, Geo) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  {if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}