Last observation: 2025 (N = 39064)
First observation: 1996 (N = 4959)
Last data update: 14 aoû 2026, 20:16. Last compile: 18 aoû 2026, 03:24
Data - Eurostat
Last observation: 2025 (N = 39064)
First observation: 1996 (N = 4959)
Last data update: 14 aoû 2026, 20:16. Last compile: 18 aoû 2026, 03:24
prc_hicp_ainr |>
filter(geo %in% c("FR", "DE", "ES", "IT"),
coicop18 == "TOTAL",
unit == "RCH_A_AVG") |>
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(1997, 2100, 2), "-01-01")),
labels = date_format("%Y")) +
xlab("") + ylab("HICP inflation rate (annual average)") +
scale_y_continuous(labels = scales::percent_format(accuracy = 1)) +
geom_hline(yintercept = 0, linetype = "dashed", color = "black")
prc_hicp_ainr |>
filter(geo == "FR",
coicop18 %in% c("CP01", "CP04", "CP07"),
unit == "RCH_A_AVG") |>
year_to_date() |>
mutate(values = values/100) |>
ggplot() + geom_line(aes(x = date, y = values, color = Coicop18)) +
theme_minimal() +
theme(legend.position = c(0.25, 0.85),
legend.title = element_blank()) +
scale_x_date(breaks = as.Date(paste0(seq(1997, 2100, 2), "-01-01")),
labels = date_format("%Y")) +
xlab("") + ylab("HICP inflation rate (annual average)") +
scale_y_continuous(labels = scales::percent_format(accuracy = 1)) +
geom_hline(yintercept = 0, linetype = "dashed", color = "black")
latest_y_hicp <- prc_hicp_ainr |>
filter(coicop18 == "TOTAL",
unit == "RCH_A_AVG",
geo %in% c("FR", "DE", "ES", "IT", "EU27_2020"),
!is.na(values)) |>
summarise(m = max(time)) |>
pull(m)
prc_hicp_ainr |>
filter(time == latest_y_hicp,
coicop18 == "TOTAL",
unit == "RCH_A_AVG",
geo %in% c("FR", "DE", "ES", "IT", "EU27_2020")) |>
transmute(Geo, `Inflation rate` = paste0(round(values, 1), "%")) |>
print_table_conditional()| Geo | Inflation rate |
|---|---|
| Germany | 2.3% |
| Spain | 2.7% |
| European Union - 27 countries (from 2020) | 2.5% |
| France | 0.9% |
| Italy | 1.6% |