Last observation: 17 sept. 2026 (N = 2148)
First observation: 6 sept. 2004 (N = 2148)
Last data update: 20 sept. 2026, 22:22
Last compile: 20 sept. 2026, 22:58
irt_euryld_d |>
filter(yld_curv == "SPOT_RT",
bonds == "CGB_EA_AAA",
maturity %in% c("Y1", "Y5", "Y10", "Y30")) |>
day_to_date() |>
mutate(values = values/100) |>
ggplot() + geom_line(aes(x = date, y = values, color = Maturity)) +
theme_minimal() +
scale_x_date(breaks = as.Date(paste0(seq(2004, 2100, 2), "-01-01")),
labels = date_format("%Y")) +
theme(legend.position = "right") +
xlab("") + ylab("Spot rate yield") +
scale_y_continuous(labels = scales::percent_format(accuracy = 1)) +
geom_hline(yintercept = 0, linetype = "dashed", color = "black")
irt_euryld_d |>
filter(yld_curv == "SPOT_RT",
bonds == "CGB_EA_AAA",
maturity %in% c("Y1", "Y5", "Y10", "Y30")) |>
day_to_date() |>
filter(date >= as.Date("2020-01-01")) |>
mutate(values = values/100) |>
ggplot() + geom_line(aes(x = date, y = values, color = Maturity)) +
theme_minimal() +
scale_x_date(breaks = as.Date(paste0(seq(2004, 2100, 1), "-01-01")),
labels = date_format("%Y")) +
theme(legend.position = "right") +
xlab("") + ylab("Spot rate yield") +
scale_y_continuous(labels = scales::percent_format(accuracy = 1)) +
geom_hline(yintercept = 0, linetype = "dashed", color = "black")
latest_d <- irt_euryld_d |>
filter(yld_curv == "SPOT_RT",
bonds == "CGB_EA_AAA",
maturity == "Y10",
!is.na(values)) |>
summarise(m = max(time)) |>
pull(m)
irt_euryld_d |>
filter(yld_curv == "SPOT_RT",
bonds %in% c("CGB_EA", "CGB_EA_AAA"),
maturity %in% c("Y1", "Y2", "Y3", "Y5", "Y7", "Y10", "Y15", "Y20", "Y30"),
time == latest_d) |>
mutate(values = round(values, 2)) |>
select(maturity, Maturity, Bonds, values) |>
spread(Bonds, values) |>
print_table_conditional()| maturity | Maturity | AAA-rated euro area central government bonds | All euro area central government bonds |
|---|---|---|---|
| Y1 | Maturity: 1 year | 2.97 | 3.05 |
| Y10 | Maturity: 10 years | 3.49 | 3.94 |
| Y15 | Maturity: 15 years | 3.69 | 4.23 |
| Y2 | Maturity: 2 years | 3.15 | 3.25 |
| Y20 | Maturity: 20 years | 3.78 | 4.37 |
| Y3 | Maturity: 3 years | 3.19 | 3.35 |
| Y30 | Maturity: 30 years | 3.75 | 4.37 |
| Y5 | Maturity: 5 years | 3.24 | 3.51 |
| Y7 | Maturity: 7 years | 3.33 | 3.69 |