Unemployment by sex, age, citizenship and NUTS 2 regions - lfst_r_lfu2gan

Data - Eurostat

Info

Last observation: Annual: 2025 (N = 32,319)

First observation: Annual: 1999 (N = 26,042)

Last data update: 11 aoû 2026, 21:35. Last compile: 12 aoû 2026, 01:14

Structure

Unemployed Persons

France, Germany, Italy, Spain

Code
lfst_r_lfu2gan |>
  filter(geo %in% c("FR", "DE", "IT", "ES"),
         age == "Y15-74",
         sex == "T",
         citizen == "TOTAL") |>
  year_to_date() |>
  left_join(colors, by = c("Geo" = "country")) |>
  ggplot() + geom_line(aes(x = date, y = values, color = color)) +
  theme_minimal() + scale_color_identity() + add_flags +
  scale_x_date(breaks = as.Date(paste0(seq(1995, 2100, 5), "-01-01")),
               labels = date_format("%Y")) +
  xlab("") + ylab("Unemployed persons (thousands)")

France, by Region

Code
lfst_r_lfu2gan |>
  filter(geo %in% c("FR10", "FRI", "FRE", "FRK"),
         age == "Y15-74",
         sex == "T",
         citizen == "TOTAL") |>
  year_to_date() |>
  ggplot() + geom_line(aes(x = date, y = values, color = Geo)) +
  theme_minimal() +
  scale_x_date(breaks = as.Date(paste0(seq(1995, 2100, 5), "-01-01")),
               labels = date_format("%Y")) +
  theme(legend.position = "right") +
  xlab("") + ylab("Unemployed persons (thousands)")

France, by Citizenship

Code
lfst_r_lfu2gan |>
  filter(geo == "FR",
         age == "Y15-74",
         sex == "T",
         citizen %in% c("NAT", "FOR")) |>
  year_to_date() |>
  ggplot() + geom_line(aes(x = date, y = values, color = Citizen)) +
  theme_minimal() +
  scale_x_date(breaks = as.Date(paste0(seq(1995, 2100, 5), "-01-01")),
               labels = date_format("%Y")) +
  theme(legend.position = c(0.25, 0.85),
        legend.title = element_blank()) +
  xlab("") + ylab("Unemployed persons (thousands)")