Employment (thousand hours worked) by NUTS 2 regions - nama_10r_2emhrw

Data - Eurostat

Info

Last observation: 2024 (N = 6060)

First observation: 2000 (N = 15165)

Last data update: 14 aoû 2026, 21:29. Last compile: 18 aoû 2026, 02:31

Structure

Hours Worked, Total Employment

France, Germany, Italy, Spain, Poland

Code
nama_10r_2emhrw |>
  filter(geo %in% c("FR", "DE", "IT", "ES", "PL"),
         wstatus == "EMP",
         nace_r2 == "TOTAL") |>
  year_to_date() |>
  mutate(values = values/1e6) |>
  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(2000, 2100, 2), "-01-01")),
               labels = date_format("%Y")) +
  xlab("") + ylab("Hours worked, total employment (Bn hours)")

France: Top NUTS2 Regions

Code
nama_10r_2emhrw |>
  filter(geo %in% c("FR10", "FRK", "FRL0", "FRG0"),
         wstatus == "EMP",
         nace_r2 == "TOTAL") |>
  year_to_date() |>
  mutate(values = values/1000,
         Geo = gsub("^FR[0-9A-Z]+ ", "", Geo)) |>
  ggplot() + geom_line(aes(x = date, y = values, color = Geo)) +
  theme_minimal() +
  scale_x_date(breaks = as.Date(paste0(seq(2000, 2100, 2), "-01-01")),
               labels = date_format("%Y")) +
  theme(legend.title = element_blank()) +
  xlab("") + ylab("Hours worked, total employment (Millions)")