Code
%>%
lfst_r_lfu2gan left_join(unit, by = "unit") %>%
group_by(unit, Unit) %>%
summarise(Nobs = n()) %>%
arrange(-Nobs) %>%
if (is_html_output()) print_table(.) else .} {
unit | Unit | Nobs |
---|---|---|
THS_PER | Thousand persons | 886779 |
Data - Eurostat
%>%
lfst_r_lfu2gan left_join(unit, by = "unit") %>%
group_by(unit, Unit) %>%
summarise(Nobs = n()) %>%
arrange(-Nobs) %>%
if (is_html_output()) print_table(.) else .} {
unit | Unit | Nobs |
---|---|---|
THS_PER | Thousand persons | 886779 |
%>%
lfst_r_lfu2gan left_join(citizen, by = "citizen") %>%
group_by(citizen, Citizen) %>%
summarise(Nobs = n()) %>%
arrange(-Nobs) %>%
if (is_html_output()) print_table(.) else .} {
citizen | Citizen | Nobs |
---|---|---|
TOTAL | Total | 175275 |
NAT | Reporting country | 157346 |
FOR | Foreign country | 154955 |
NEU27_2020_FOR | Non-EU27 countries (from 2020) nor reporting country | 152498 |
EU27_2020_FOR | EU27 countries (from 2020) except reporting country | 148533 |
NRP | No response | 54378 |
STLS | Stateless | 43794 |
%>%
lfst_r_lfu2gan left_join(age, by = "age") %>%
group_by(age, Age) %>%
summarise(Nobs = n()) %>%
arrange(-Nobs) %>%
if (is_html_output()) print_table(.) else .} {
age | Age | Nobs |
---|---|---|
Y15-74 | From 15 to 74 years | 182094 |
Y15-64 | From 15 to 64 years | 181509 |
Y20-64 | From 20 to 64 years | 181077 |
Y25-54 | From 25 to 54 years | 178807 |
Y55-64 | From 55 to 64 years | 163292 |
%>%
lfst_r_lfu2gan 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 | 301014 |
M | Males | 293461 |
F | Females | 292304 |
%>%
lfst_r_lfu2gan left_join(geo, by = "geo") %>%
group_by(geo, Geo) %>%
summarise(Nobs = n()) %>%
arrange(-Nobs) %>%
if (is_html_output()) datatable(., filter = 'top', rownames = F) else .} {
%>%
lfst_r_lfu2gan group_by(time) %>%
summarise(Nobs = n()) %>%
arrange(-Nobs) %>%
if (is_html_output()) datatable(., filter = 'top', rownames = F) else .} {