Employment rates by sex, age, educational attainment level, citizenship and NUTS 2 regions - lfst_r_lfe2emprtn

Data - Eurostat

Info

Last observation: Annual: 2025 (N = 103,892)

First observation: Annual: 1999 (N = 87,494)

Last data update: 11 aoû 2026, 19:47. Last compile: 12 aoû 2026, 01:09

Structure

Education: levels 0-2

Code
lfst_r_lfe2emprtn |>
  filter(unit == "PC",
         sex == "T",
         isced11 == "ED0-2",
         citizen == "TOTAL",
         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: levels 3-4

Code
lfst_r_lfe2emprtn |>
  filter(unit == "PC",
         sex == "T",
         isced11 == "ED3_4",
         citizen == "TOTAL",
         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: levels 5-8

Code
lfst_r_lfe2emprtn |>
  filter(unit == "PC",
         sex == "T",
         isced11 == "ED5-8",
         citizen == "TOTAL",
         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 (%)")