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 3971497
Y_GE80 80 years or over 3941396
Y60-79 From 60 to 79 years 3941126
Y40-59 From 40 to 59 years 3939071
Y20-39 From 20 to 39 years 3938208
Y_LT20 Less than 20 years 3937978
UNK Unknown 3861826

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 9196348
M Males 9167472
F Females 9167282

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 27531102

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 .}