House price index (2015 = 100) - quarterly data
Data - Eurostat
Info
Last observation: Quarterly: 2026Q1 (N = 139)
First observation: Quarterly: 2005Q1 (N = 72)
Last data update: 23 jul 2026, 22:28. Last compile: 24 jul 2026, 01:24
Structure
France, Germany, Spain, Netherlands, Italy
House Price Index (2015 = 100)
Code
ei_hppi_q %>%
filter(geo %in% c("FR", "DE", "ES", "NL", "IT"),
unit == "I15_NSA") %>%
quarter_to_date %>%
left_join(colors, by = c("Geo" = "country")) %>%
mutate(color = ifelse(geo == "NL", color2, color)) %>%
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("House price index (2015 = 100)")
Year-on-Year Growth Rate
Code
ei_hppi_q %>%
filter(geo %in% c("FR", "DE", "ES", "NL", "IT"),
unit == "RT4") %>%
quarter_to_date %>%
left_join(colors, by = c("Geo" = "country")) %>%
mutate(color = ifelse(geo == "NL", color2, color)) %>%
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("House prices, y-o-y growth rate") +
scale_y_continuous(labels = scales::percent_format(accuracy = 1)) +
geom_hline(yintercept = 0, linetype = "dashed", color = "black")
Latest Quarter by Country
Code
latest_q <- ei_hppi_q %>%
filter(unit == "I15_NSA", !is.na(values)) %>%
summarise(m = max(time)) %>%
pull(m)
ei_hppi_q %>%
filter(geo %in% c("EA20", "EU27_2020", "FR", "DE", "ES", "NL", "IT", "PT", "IE", "SE"),
unit %in% c("I15_NSA", "RT4"),
time == latest_q) %>%
select(Geo, Unit, values) %>%
spread(Unit, values) %>%
print_table_conditional()| Geo | Growth rate on the same quarter in previous year | Index, 2015=100 (NSA) |
|---|---|---|
| Euro area – 20 countries (2023-2025) | 4.6 | 157.38 |
| European Union - 27 countries (from 2020) | 5.1 | 166.63 |
| France | 0.1 | 126.67 |
| Germany | 1.4 | 153.40 |
| Ireland | 6.8 | 204.79 |
| Italy | 5.2 | 119.20 |
| Netherlands | 5.2 | 221.14 |
| Portugal | 17.8 | 290.98 |
| Spain | 12.8 | 194.06 |
| Sweden | 2.6 | 136.76 |