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 3794489
Y60-79 From 60 to 79 years 3764887
Y_GE80 80 years or over 3764887
Y40-59 From 40 to 59 years 3764827
Y20-39 From 20 to 39 years 3764740
Y_LT20 Less than 20 years 3764677
UNK Unknown 3685818

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 8786468
M Males 8758938
F Females 8758919

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 26304325

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