Last observation: 2026Q1 (N = 184)
First observation: 2006Q1 (N = 10)
Last data update: 16 juil. 2026, 01:04. Last compile: 02 sept. 2026, 00:52
Data - Eurostat
Last observation: 2026Q1 (N = 184)
First observation: 2006Q1 (N = 10)
Last data update: 16 juil. 2026, 01:04. Last compile: 02 sept. 2026, 00:52
prc_hpi_hsnq |>
filter(geo %in% c("FR", "IT", "DE"),
unit == "I25_Q") |>
quarter_to_date() |>
left_join(colors, by = c("Geo" = "country")) |>
ggplot() + geom_line() + theme_minimal() +
aes(x = date, y = values, color = color) +
scale_color_identity() + add_flags +
scale_x_date(breaks = seq(1920, 2100, 1) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
theme(legend.position = c(0.35, 0.9),
legend.title = element_blank()) +
scale_y_continuous(breaks = seq(-100, 300, 10)) +
ylab("House Price Index") + xlab("")
prc_hpi_hsnq |>
filter(geo %in% c("BE", "DK", "FI"),
unit == "I25_Q") |>
quarter_to_date() |>
left_join(colors, by = c("Geo" = "country")) |>
ggplot() + geom_line() + theme_minimal() +
aes(x = date, y = values, color = color) +
scale_color_identity() + add_flags +
scale_x_date(breaks = seq(1920, 2100, 1) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
theme(legend.position = c(0.35, 0.9),
legend.title = element_blank()) +
scale_y_continuous(breaks = seq(-100, 300, 10)) +
ylab("House Price Index") + xlab("")
prc_hpi_hsnq |>
filter(geo %in% c("FR")) |>
quarter_to_date() |>
ggplot() + geom_line() + theme_minimal() +
aes(x = date, y = values, color = unit, linetype = unit) +
scale_color_manual(values = viridis(5)) +
scale_x_date(breaks = seq(1920, 2100, 1) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
theme(legend.position = c(0.35, 0.9),
legend.title = element_blank()) +
scale_y_continuous(breaks = seq(-100, 300, 10)) +
ylab("House Price Index") + xlab("")