Employment rates of young people not in education and training by sex, educational attainment level, years since completion of highest level of education and NUTS 2 regions - edat_lfse_33

Data - Eurostat

sex

Code
edat_lfse_33 %>%
  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 1346971
M Males 1340201
F Females 1337603

unit

Code
edat_lfse_33 %>%
  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 4024775

isced11

Code
edat_lfse_33 %>%
  left_join(isced11, by = "isced11") %>%
  group_by(isced11, Isced11) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  {if (is_html_output()) print_table(.) else .}
isced11 Isced11 Nobs
TOTAL All ISCED 2011 levels 583589
ED3-8 Upper secondary, post-secondary non-tertiary and tertiary education (levels 3-8) 583418
ED0-4 Less than primary, primary, secondary and post-secondary non-tertiary education (levels 0-4) 583172
ED3_4 Upper secondary and post-secondary non-tertiary education (levels 3 and 4) 582775
ED5-8 Tertiary education (levels 5-8) 582357
ED0-2 Less than primary, primary and lower secondary education (levels 0-2) 558895
ED3_4VOC Upper secondary and post-secondary non-tertiary education (levels 3 and 4) - vocational 269788
ED3_4GEN Upper secondary and post-secondary non-tertiary education (levels 3 and 4) - general 266246
NRP No response 14535

duration

Code
edat_lfse_33 %>%
  left_join(duration, by = "duration") %>%
  group_by(duration, Duration) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  {if (is_html_output()) print_table(.) else .}
duration Duration Nobs
TOTAL Total 692494
Y_GT3 Over 3 years 672687
Y_GT5 Over 5 years 672389
Y_LE5 5 years or less 668945
Y_LE3 3 years or less 659762
Y1-3 From 1 to 3 years 658498

age

Code
edat_lfse_33 %>%
  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-34 From 15 to 34 years 1347067
Y18-34 From 18 to 34 years 1344843
Y20-34 From 20 to 34 years 1332865

geo

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

time

Code
edat_lfse_33 %>%
  group_by(time) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  {if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}

Education Foreign: levels 0-2

Code
edat_lfse_33 %>%
  filter(unit == "PC",
         sex == "T",
         isced11 == "ED0-2",
         duration == "TOTAL",
         age == "Y15-34",
         nchar(geo) == 4,
         time == "2018") %>%
  right_join(europe_NUTS2, by = "geo") %>%
  filter(long >= -13.5, lat >= 33) %>%
  ggplot(., aes(x = long, y = lat, group = group, fill = values/100)) +
  geom_polygon() + coord_map() +
  scale_fill_viridis_c(na.value = "white",
                       labels = scales::percent_format(accuracy = 1),
                       breaks = 0.01*seq(20, 100, 10),
                       values = c(0, 0.1, 0.3, 0.4, 0.5, 0.6, 1)) +
  theme_void() + theme(legend.position = c(0.15, 0.85)) +
  labs(fill = "Employment \nPrimary Education (%)")

Upper secondary and post-secondary non-tertiary education (levels 3 and 4)

Education Foreign: levels 3-4

Code
edat_lfse_33 %>%
  filter(unit == "PC",
         sex == "T",
         isced11 == "ED3_4",
         duration == "TOTAL",
         age == "Y15-34",
         nchar(geo) == 4,
         time == "2018") %>%
  right_join(europe_NUTS2, by = "geo") %>%
  filter(long >= -13.5, lat >= 33) %>%
  ggplot(., aes(x = long, y = lat, group = group, fill = values/100)) +
  geom_polygon() + coord_map() +
  scale_fill_viridis_c(na.value = "white",
                       labels = scales::percent_format(accuracy = 1),
                       breaks = 0.01*seq(20, 100, 10),
                       values = c(0, 0.1, 0.3, 0.4, 0.5, 0.6, 1)) +
  theme_void() + theme(legend.position = c(0.15, 0.85)) +
  labs(fill = "Employment \nSecondary Education (%)")

Education Foreign: levels 5-8

Code
edat_lfse_33 %>%
  filter(unit == "PC",
         sex == "T",
         isced11 == "ED5-8",
         duration == "TOTAL",
         age == "Y15-34",
         nchar(geo) == 4,
         time == "2018") %>%
  right_join(europe_NUTS2, by = "geo") %>%
  filter(long >= -13.5, lat >= 33) %>%
  ggplot(., aes(x = long, y = lat, group = group, fill = values/100)) +
  geom_polygon() + coord_map() +
  scale_fill_viridis_c(na.value = "white",
                       labels = scales::percent_format(accuracy = 1),
                       breaks = 0.01*seq(20, 100, 10),
                       values = c(0, 0.1, 0.3, 0.4, 0.5, 0.6, 1)) +
  theme_void() + theme(legend.position = c(0.15, 0.85)) +
  labs(fill = "Employment \nTertiary Education (%)")