Last observation: 2024 (N = 3)
First observation: 2005 (N = 4)
Last data update: 14 aoû 2026, 19:21. Last compile: 18 aoû 2026, 00:44
Data - Eurostat
Last observation: 2024 (N = 3)
First observation: 2005 (N = 4)
Last data update: 14 aoû 2026, 19:21. Last compile: 18 aoû 2026, 00:44
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_flags +
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 <- 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 |