Employment by A*10 industry breakdowns
Data - Eurostat
Info
Last observation: Annual: 2025 (N = 11,642)
First observation: Annual: 1975 (N = 570)
Last data update: 14 aoû 2026, 01:52. Last compile: 14 aoû 2026, 03:44
Structure
Number of hours
Code
nama_10_a10_e |>
filter(geo %in% c("FR", "DE", "IT"),
nace_r2 == "C",
unit == "THS_HW",
na_item == "EMP_DC") |>
year_to_date() |>
arrange(date) |>
ggplot() + geom_line(aes(x = date, y = values/1000, color = geo, linetype = geo)) +
theme_minimal() + xlab("") + ylab("Number of Hours Worked") +
scale_x_date(breaks = seq(1960, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = seq(0, 1000000, 1000),
labels = dollar_format(accuracy = 1, prefix = "", suffix = "M")) +
scale_color_manual(values = viridis(5)[1:4]) +
theme(legend.position = c(0.2, 0.80),
legend.title = element_blank())
Number of hours worked
Code
nama_10_a10_e |>
filter(geo %in% c("FR", "DE", "IT"),
nace_r2 == "TOTAL",
unit == "THS_PER",
na_item == "EMP_DC") |>
year_to_date() |>
arrange(date) |>
ggplot() + geom_line(aes(x = date, y = values/1000, color = geo, linetype = geo)) +
theme_minimal() + xlab("") + ylab("Number of Hours Worked") +
scale_x_date(breaks = seq(1960, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = seq(0, 1000000, 1000),
labels = dollar_format(accuracy = 1, prefix = "", suffix = "M")) +
scale_color_manual(values = viridis(5)[1:4]) +
theme(legend.position = c(0.2, 0.80),
legend.title = element_blank())
