Nominal unit labour cost growth - enpe_nama_10_ulc

Data - Eurostat

Info

Last observation: Annual: 2024 (N = 3)

First observation: Annual: 2005 (N = 4)

Last data update: 23 jul 2026, 22:08. Last compile: 24 jul 2026, 01:30

Structure

Nominal Unit Labour Cost Growth

Armenia, Azerbaijan, Belarus, Georgia, Moldova

Code
enpe_nama_10_ulc %>%
  filter(geo %in% c("AM", "AZ", "BY", "GE", "MD")) %>%
  year_to_date %>%

  left_join(colors, by = c("Geo" = "country")) %>%
  mutate(values = values/100) %>%
  ggplot + geom_line(aes(x = date, y = values, color = color)) +
  theme_minimal() + scale_color_identity() + add_5flags +
  scale_x_date(breaks = as.Date(paste0(seq(2005, 2100, 2), "-01-01")),
               labels = date_format("%Y")) +
  xlab("") + ylab("Nominal unit labour cost growth") +
  scale_y_continuous(labels = scales::percent_format(accuracy = 1)) +
  geom_hline(yintercept = 0, linetype = "dashed", color = "black")

Latest Year

Code
latest_year <- enpe_nama_10_ulc %>%
  filter(!is.na(values)) %>%
  summarise(m = max(time)) %>%
  pull(m)

enpe_nama_10_ulc %>%
  filter(time == latest_year) %>%
  select(geo, Geo, values) %>%
  arrange(-values) %>%
  print_table_conditional()
geo Geo values
AZ Azerbaijan 6.6
GE Georgia 1.9
MD Moldova 1.1