Last observation: 2025 (N = 298)
First observation: 1971 (N = 3)
Last data update: 15 juil. 2026, 03:53. Last compile: 01 sept. 2026, 23:45
Data - Eurostat
Last observation: 2025 (N = 298)
First observation: 1971 (N = 3)
Last data update: 15 juil. 2026, 03:53. Last compile: 01 sept. 2026, 23:45
ert_bil_eur_a |>
filter(statinfo == "END",
time %in% c("2019", "2009", "1999", "1989")) |>
select(-statinfo, -unit) |>
spread(time, values) %>%
{if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}ert_bil_eur_a |>
filter(statinfo == "END",
currency %in% c("GBP", "CHF", "USD", "CAD")) |>
time_to_date() |>
ggplot() + geom_line() + theme_minimal() +
aes(x = date, y = values, color = Currency, linetype = Currency) +
scale_color_manual(values = viridis(5)[1:4]) +
scale_x_date(breaks = seq(1920, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
theme(legend.position = c(0.85, 0.85),
legend.title = element_blank()) +
scale_y_continuous(breaks = seq(0, 9, 0.2)) +
ylab("Exchange Rate") + xlab("")
ert_bil_eur_a |>
filter(statinfo == "END",
currency %in% c("PLN", "SGD", "AUD", "NZD")) |>
time_to_date() |>
ggplot() + geom_line() + theme_minimal() +
aes(x = date, y = values, color = Currency, linetype = Currency) +
scale_color_manual(values = viridis(5)[1:4]) +
scale_x_date(breaks = seq(1920, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
theme(legend.position = c(0.15, 0.85),
legend.title = element_blank()) +
scale_y_continuous(breaks = seq(0, 9, 0.2)) +
ylab("Exchange Rate") + xlab("")
ert_bil_eur_a |>
filter(statinfo == "END",
currency %in% c("PLN", "HUF")) |>
time_to_date() |>
ggplot() + geom_line() + theme_minimal() +
aes(x = date, y = values, color = Currency, linetype = Currency) +
scale_color_manual(values = viridis(4)[1:3]) +
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("")