Code
%>%
lfst_r_lfur2gac left_join(unit, by = "unit") %>%
group_by(unit, Unit) %>%
summarise(Nobs = n()) %>%
arrange(-Nobs) %>%
if (is_html_output()) print_table(.) else .} {
unit | Unit | Nobs |
---|---|---|
PC | Percentage | 847065 |
Data - Eurostat
%>%
lfst_r_lfur2gac left_join(unit, by = "unit") %>%
group_by(unit, Unit) %>%
summarise(Nobs = n()) %>%
arrange(-Nobs) %>%
if (is_html_output()) print_table(.) else .} {
unit | Unit | Nobs |
---|---|---|
PC | Percentage | 847065 |
%>%
lfst_r_lfur2gac left_join(c_birth, by = "c_birth") %>%
group_by(c_birth, C_birth) %>%
summarise(Nobs = n()) %>%
arrange(-Nobs) %>%
if (is_html_output()) print_table(.) else .} {
c_birth | C_birth | Nobs |
---|---|---|
TOTAL | Total | 175275 |
NAT | Reporting country | 163638 |
FOR | Foreign country | 162115 |
NEU27_2020_FOR | Non-EU27 countries (from 2020) nor reporting country | 146643 |
EU27_2020_FOR | EU27 countries (from 2020) except reporting country | 143328 |
NRP | No response | 56066 |
%>%
lfst_r_lfur2gac 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 | 285115 |
F | Females | 281054 |
M | Males | 280896 |
%>%
lfst_r_lfur2gac 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 | 172275 |
Y15-64 | From 15 to 64 years | 171802 |
Y20-64 | From 20 to 64 years | 171209 |
Y25-54 | From 25 to 54 years | 169263 |
Y55-64 | From 55 to 64 years | 162516 |
%>%
lfst_r_lfur2gac 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_lfur2gac group_by(time) %>%
summarise(Nobs = n()) %>%
arrange(-Nobs) %>%
if (is_html_output()) datatable(., filter = 'top', rownames = F) else .} {