Total and active population by sex, age, employment status, residence one year prior to the census and NUTS 3 regions - cens_01ramigr

Data - Eurostat

wstatus

Code
cens_01ramigr %>%
  left_join(wstatus, by = "wstatus") %>%
  group_by(wstatus, Wstatus) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  {if (is_html_output()) print_table(.) else .}
wstatus Wstatus Nobs
POP Population 909915
ACT Persons in the labour force (former name: active persons) 575446

resid

Code
cens_01ramigr %>%
  left_join(resid, by = "resid") %>%
  group_by(resid, Resid) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  {if (is_html_output()) print_table(.) else .}
resid Resid Nobs
TOTAL Total 648516
CHG_OUT3 Place of residence changed outside the NUTS3 area 432430
CHG_OUT Place of residence changed from outside the reporting country 404415

age

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

sex

Code
cens_01ramigr %>%
  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 502579
M Males 492096
F Females 490686

unit

Code
cens_01ramigr %>%
  left_join(unit, by = "unit") %>%
  group_by(unit, Unit) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  {if (is_html_output()) print_table(.) else .}
unit Unit Nobs
PER Person 1485361

geo

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