Compensation of employees - tec00013

Data - Eurostat

Info

Last observation: Annual: 2025 (N = 78)

First observation: Annual: 2014 (N = 88)

Last data update: 23 jul 2026, 22:16. Last compile: 24 jul 2026, 03:59

Structure

France, Germany, Portugal

Code
tec00013 %>%
  filter(geo %in% c("FR", "DE", "PT"),
         unit == "PC_GDP") %>%
  year_to_enddate %>%
  
  ggplot + geom_line() + theme_minimal()  +
  aes(x = date, y = values/100, color = Geo, linetype = Geo) +
  scale_color_manual(values = viridis(4)[1:3]) +
  scale_x_date(breaks = as.Date(paste0(seq(1960, 2100, 1), "-01-01")),
               labels = date_format("%Y")) +
  theme(legend.position = c(0.7, 0.55),
        legend.title = element_blank()) +
  xlab("") + ylab("Compensation of employees") +
  scale_y_continuous(breaks = 0.01*seq(0, 200, 1),
                     labels = scales::percent_format(accuracy = 1))

France, Germany, Italy, Spain, Netherlands

Code
tec00013 %>%
  filter(geo %in% c("FR", "DE", "IT", "ES", "NL"),
         unit == "CP_MEUR") %>%
  year_to_enddate %>%

  left_join(colors, by = c("Geo" = "country")) %>%
  mutate(color = ifelse(geo == "NL", color2, color)) %>%
  ggplot + geom_line(aes(x = date, y = values/1e6, color = color)) +
  theme_minimal() + scale_color_identity() + add_5flags +
  scale_x_date(breaks = as.Date(paste0(seq(2000, 2100, 1), "-01-01")),
               labels = date_format("%Y")) +
  xlab("") + ylab("Compensation of employees (Bn€)")

Latest Year: Compensation of Employees (% of GDP)

Code
latest_yr <- tec00013 %>%
  filter(unit == "PC_GDP", nchar(geo) == 2, !is.na(values)) %>%
  summarise(m = max(time)) %>%
  pull(m)

tec00013 %>%
  filter(unit == "PC_GDP", nchar(geo) == 2, time == latest_yr) %>%
  select(geo, Geo, `Compensation of employees (% GDP)` = values) %>%
  arrange(desc(`Compensation of employees (% GDP)`)) %>%
  print_table_conditional()