EMU convergence criterion series - monthly data - irt_lt_mcby_m
Data - Eurostat
Last observation: juil. 2026 (N = 29)
First observation: janv. 1980 (N = 5)
Last data update: 01 sept. 2026, 01:07
Last compile: 02 sept. 2026, 14:52
Structure
geo
Code
irt_lt_mcby_m |>
left_join(geo, by = "geo") |>
group_by(geo, Geo) |>
summarise(Nobs = n()) |>
arrange(-Nobs) |>
mutate(Geo = ifelse(geo == "DE", "Germany", Geo)) |>
mutate(Flag = gsub(" ", "-", str_to_lower(Geo)),
Flag = paste0('<img src="../../bib/flags/vsmall/', Flag, '.png" alt="Flag">')) |>
select(Flag, everything()) %>%
{if (is_html_output()) datatable(., filter = 'top', rownames = F, escape = F) else .}Germany, Italy, France, Spain
All
Code
irt_lt_mcby_m |>
filter(geo %in% c("FR", "DE", "ES", "IT")) |>
left_join(geo, by = "geo") |>
month_to_date() |>
mutate(values = values / 100) |>
left_join(colors, by = c("Geo" = "country")) |>
ggplot() + geom_line(aes(x = date, y = values, color = color)) +
scale_color_identity() + theme_minimal() + add_flags +
scale_x_date(breaks = as.Date(paste0(seq(1960, 2100, 5), "-01-01")),
labels = date_format("%Y")) +
xlab("") + ylab("10-year yield") +
scale_y_continuous(breaks = 0.01*seq(-30, 30, 2),
labels = percent_format(a = 1)) +
geom_hline(yintercept = 0, linetype = "dashed", color = "black")
1997-
Code
irt_lt_mcby_m |>
filter(geo %in% c("FR", "DE", "ES", "IT")) |>
left_join(geo, by = "geo") |>
month_to_date() |>
mutate(values = values / 100) |>
left_join(colors, by = c("Geo" = "country")) |>
filter(date >= as.Date("1997-01-01")) |>
ggplot() + geom_line(aes(x = date, y = values, color = color)) +
scale_color_identity() + theme_minimal() + add_flags +
scale_x_date(breaks = as.Date(paste0(seq(1960, 2100, 2), "-01-01")),
labels = date_format("%Y")) +
xlab("") + ylab("10-year yield") +
scale_y_continuous(breaks = 0.01*seq(-30, 30, 1),
labels = percent_format(a = 1)) +
geom_hline(yintercept = 0, linetype = "dashed", color = "black")
2000-
Code
irt_lt_mcby_m |>
filter(geo %in% c("FR", "DE", "ES", "IT")) |>
left_join(geo, by = "geo") |>
month_to_date() |>
mutate(values = values / 100) |>
left_join(colors, by = c("Geo" = "country")) |>
filter(date >= as.Date("2000-01-01")) |>
ggplot() + geom_line(aes(x = date, y = values, color = color)) +
scale_color_identity() + theme_minimal() + add_flags +
scale_x_date(breaks = as.Date(paste0(seq(1960, 2100, 2), "-01-01")),
labels = date_format("%Y")) +
xlab("") + ylab("10-year yield") +
scale_y_continuous(breaks = 0.01*seq(-30, 30, 1),
labels = percent_format(a = 1)) +
geom_hline(yintercept = 0, linetype = "dashed", color = "black")
2010-
Code
irt_lt_mcby_m |>
filter(geo %in% c("FR", "DE", "ES", "IT")) |>
left_join(geo, by = "geo") |>
month_to_date() |>
mutate(values = values / 100) |>
left_join(colors, by = c("Geo" = "country")) |>
filter(date >= as.Date("2010-01-01")) |>
ggplot() + geom_line(aes(x = date, y = values, color = color)) +
scale_color_identity() + theme_minimal() + add_flags +
scale_x_date(breaks = as.Date(paste0(seq(1960, 2100, 2), "-01-01")),
labels = date_format("%Y")) +
xlab("") + ylab("10-year yield") +
scale_y_continuous(breaks = 0.01*seq(-30, 30, 1),
labels = percent_format(a = 1)) +
geom_hline(yintercept = 0, linetype = "dashed", color = "black")
Last 10 years
Code
irt_lt_mcby_m |>
filter(geo %in% c("FR", "DE", "ES", "IT")) |>
left_join(geo, by = "geo") |>
month_to_date() |>
mutate(values = values / 100) |>
left_join(colors, by = c("Geo" = "country")) |>
filter(date >= Sys.Date() - years(10)) |>
ggplot() + geom_line(aes(x = date, y = values, color = color)) +
scale_color_identity() + theme_minimal() + add_flags +
scale_x_date(breaks = as.Date(paste0(seq(1960, 2100, 1), "-01-01")),
labels = date_format("%Y")) +
xlab("") + ylab("10-year yield") +
scale_y_continuous(breaks = 0.01*seq(-30, 30, 1),
labels = percent_format(a = 1)) +
geom_hline(yintercept = 0, linetype = "dashed", color = "black")
Last 5 years
Code
irt_lt_mcby_m |>
filter(geo %in% c("FR", "DE", "ES", "IT")) |>
left_join(geo, by = "geo") |>
month_to_date() |>
mutate(values = values / 100) |>
left_join(colors, by = c("Geo" = "country")) |>
filter(date >= Sys.Date() - years(5)) |>
ggplot() + geom_line(aes(x = date, y = values, color = color)) +
scale_color_identity() + theme_minimal() + add_flags +
scale_x_date(breaks = as.Date(paste0(seq(1960, 2100, 1), "-01-01")),
labels = date_format("%Y")) +
xlab("") + ylab("10-year yield") +
scale_y_continuous(breaks = 0.01*seq(-30, 30, 1),
labels = percent_format(a = 1)) +
geom_hline(yintercept = 0, linetype = "dashed", color = "black")
Germany, Italy, France, Spain, Greece
All
Code
irt_lt_mcby_m |>
filter(geo %in% c("FR", "DE", "IT", "ES", "EL")) |>
left_join(geo, by = "geo") |>
month_to_date() |>
mutate(values = values / 100) |>
left_join(colors, by = c("Geo" = "country")) |>
ggplot() + geom_line(aes(x = date, y = values, color = color)) +
scale_color_identity() + theme_minimal() + add_flags +
scale_x_date(breaks = as.Date(paste0(seq(1960, 2100, 5), "-01-01")),
labels = date_format("%Y")) +
xlab("") + ylab("10-year yield") +
scale_y_continuous(breaks = 0.01*seq(-30, 100, 2),
labels = percent_format(a = 1)) +
geom_hline(yintercept = 0, linetype = "dashed", color = "black")
2021-
Code
irt_lt_mcby_m |>
filter(geo %in% c("FR", "DE", "IT", "ES", "EL")) |>
left_join(geo, by = "geo") |>
month_to_date() |>
filter(date >= as.Date("2021-01-01")) |>
mutate(values = values / 100) |>
left_join(colors, by = c("Geo" = "country")) |>
ggplot() + geom_line(aes(x = date, y = values, color = color)) +
scale_color_identity() + theme_minimal() + add_flags +
scale_x_date(breaks = "1 year",
labels = date_format("%Y")) +
xlab("") + ylab("10-year yield") +
scale_y_continuous(breaks = 0.01*seq(-30, 30, 1),
labels = percent_format(a = 1)) +
geom_hline(yintercept = 0, linetype = "dashed", color = "black") +
theme(axis.text.x = element_text(angle = 45, vjust = 1, hjust = 1))
2022-
Flags
Code
irt_lt_mcby_m |>
filter(geo %in% c("FR", "DE", "IT", "ES", "EL")) |>
left_join(geo, by = "geo") |>
month_to_date() |>
filter(date >= as.Date("2022-01-01")) |>
mutate(values = values / 100) |>
left_join(colors, by = c("Geo" = "country")) |>
ggplot() + geom_line(aes(x = date, y = values, color = color)) +
scale_color_identity() + theme_minimal() + add_flags +
scale_x_date(breaks = "1 year",
labels = date_format("%Y")) +
xlab("") + ylab("10-year yield") +
scale_y_continuous(breaks = 0.01*seq(-30, 30, 1),
labels = percent_format(a = 1)) +
geom_hline(yintercept = 0, linetype = "dashed", color = "black") +
theme(axis.text.x = element_text(angle = 45, vjust = 1, hjust = 1))
No flags
Why Greece: EL
Greece - Elláda
Hellenic Republic - Ellīnikī Dīmokratía
Hellas - Ellás
Code
irt_lt_mcby_m |>
filter(geo %in% c("FR", "DE", "IT", "ES", "EL")) |>
month_to_date() |>
filter(date >= as.Date("2022-01-01")) |>
ggplot() + geom_line(aes(x = date, y = values/100, color = geo)) + theme_minimal() +
scale_x_date(breaks = "1 year",
labels = date_format("%Y")) +
xlab("") + ylab("10-year yield") +
theme(legend.position = c(0.8, 0.2),
legend.title = element_blank()) +
scale_color_manual(values = c("#000000", "#0D5EAF", "#FFC400", "#ED2939", "#009246")) +
scale_y_continuous(breaks = 0.01*seq(0, 30, 1),
labels = percent_format(a = 1)) +
guides(color=guide_legend(ncol=2)) +
theme(axis.text.x = element_text(angle = 45, vjust = 1, hjust = 1))
Last 3 years
Code
irt_lt_mcby_m |>
filter(geo %in% c("FR", "DE", "IT", "ES", "EL")) |>
left_join(geo, by = "geo") |>
month_to_date() |>
filter(date >= max(date) - years(3)) |>
mutate(values = values / 100) |>
left_join(colors, by = c("Geo" = "country")) |>
ggplot() + geom_line(aes(x = date, y = values, color = color)) +
scale_color_identity() + theme_minimal() + add_flags +
scale_x_date(breaks = "6 months",
labels = date_format("%d %b %Y")) +
xlab("") + ylab("10-year yield") +
scale_y_continuous(breaks = 0.01*seq(-30, 30, .5),
labels = percent_format(a = .1)) +
theme(axis.text.x = element_text(angle = 45, vjust = 1, hjust = 1))
Last 1 year
Code
irt_lt_mcby_m |>
filter(geo %in% c("FR", "DE", "IT", "ES", "EL")) |>
left_join(geo, by = "geo") |>
month_to_date() |>
filter(date >= max(date) - years(1)) |>
mutate(values = values / 100) |>
left_join(colors, by = c("Geo" = "country")) |>
ggplot() + geom_line(aes(x = date, y = values, color = color)) +
scale_color_identity() + theme_minimal() + add_flags +
scale_x_date(breaks = "1 year",
labels = date_format("%d %b %Y")) +
xlab("") + ylab("10-year yield") +
scale_y_continuous(breaks = 0.01*seq(-30, 30, .5),
labels = percent_format(a = .1)) +
theme(axis.text.x = element_text(angle = 45, vjust = 1, hjust = 1))
2021-
Code
irt_lt_mcby_m |>
filter(geo %in% c("PT", "DE", "IT", "ES", "EL")) |>
left_join(geo, by = "geo") |>
month_to_date() |>
filter(date >= as.Date("2021-01-01")) |>
mutate(values = values / 100) |>
left_join(colors, by = c("Geo" = "country")) |>
ggplot() + geom_line(aes(x = date, y = values, color = color)) +
scale_color_identity() + theme_minimal() + add_flags +
scale_x_date(breaks = "1 year",
labels = date_format("%Y")) +
xlab("") + ylab("10-year yield") +
scale_y_continuous(breaks = 0.01*seq(-30, 30, 1),
labels = percent_format(a = 1)) +
geom_hline(yintercept = 0, linetype = "dashed", color = "black") +
theme(axis.text.x = element_text(angle = 45, vjust = 1, hjust = 1))





