HICP at constant taxes - monthly data (annual rate of change) - prc_hicp_cann

Data - Eurostat

Info

Last observation: Monthly: 2025M12 (N = 14,050)

First observation: Monthly: 2003M01 (N = 78)

Last data update: 11 aoû 2026, 20:47. Last compile: 12 aoû 2026, 02:39

Structure

Headline Inflation

France, Germany, Italy, Spain

Code
prc_hicp_cann |>
  filter(geo %in% c("FR", "DE", "IT", "ES"),
         coicop == "CP00") |>
  month_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(2003, 2100, 2), "-01-01")),
               labels = date_format("%Y")) +
  xlab("") + ylab("HICP at constant taxes, annual rate of change") +
  scale_y_continuous(labels = scales::percent_format(accuracy = 1)) +
  geom_hline(yintercept = 0, linetype = "dashed", color = "black")

France: Headline, Food, Core

Code
prc_hicp_cann |>
  filter(geo == "FR",
         coicop %in% c("CP00", "CP01", "TOT_X_NRG_FOOD")) |>
  month_to_date() |>
  mutate(values = values/100) |>
  ggplot() + geom_line(aes(x = date, y = values, color = Coicop)) +
  theme_minimal() +
  scale_x_date(breaks = as.Date(paste0(seq(2003, 2100, 2), "-01-01")),
               labels = date_format("%Y")) +
  theme(legend.position = "right") +
  xlab("") + ylab("HICP at constant taxes, annual rate of change") +
  scale_y_continuous(labels = scales::percent_format(accuracy = 1)) +
  geom_hline(yintercept = 0, linetype = "dashed", color = "black")

Latest Month by Country

Code
latest_m <- prc_hicp_cann |>
  filter(coicop == "CP00", !is.na(values)) |>
  summarise(m = max(time)) |>
  pull(m)

prc_hicp_cann |>
  filter(geo %in% c("FR", "DE", "IT", "ES", "EA20"),
         coicop %in% c("CP00", "CP01", "TOT_X_NRG_FOOD"),
         time == latest_m) |>
  mutate(values = values/100) |>
  select(geo, Geo, Coicop, values) |>
  spread(Coicop, values) |>
  print_table_conditional()
geo Geo All-items HICP Food and non-alcoholic beverages Overall index excluding energy, food, alcohol and tobacco
DE Germany 0.019 0.017 0.025
EA20 Euro area – 20 countries (2023-2025) 0.018 0.024 0.023
ES Spain 0.026 0.026 0.030
FR France 0.004 0.016 0.012
IT Italy 0.011 0.024 0.018