Interest Rates - Euro Area - MIR

Data - Banque de France

🇫🇷 Version française

Info

Last observation: M: 2026-06-30 (N = 138)

First observation: M: 2000-01-31 (N = 13)

Last data update: 28 août 2026, 19:08. Last compile: 30 août 2026, 10:27

Structure

Last

date Nobs
2026-06-30 138
2026-05-31 138

Current Transactions

Code
MIR |>
  filter(grepl("MIR.M.FR.B.A20.F.R.A.2240.EUR.O", variable) |
           grepl("MIR.M.FR.B.A20.H.R.A.2250.EUR.O", variable)) |>

  ggplot() + geom_line(aes(x = date, y = value/100, color = Variable)) +
  theme_minimal() +
  scale_x_date(breaks = as.Date(paste0(seq(1960, 2030, 2), "-01-01")),
               labels = date_format("%Y")) +
  theme(legend.position = "bottom",
        legend.title = element_blank(),
        legend.direction = "vertical") +
  xlab("") + ylab("") +
  scale_y_continuous(breaks = 0.01*seq(-10, 100, 1),
                labels = percent_format(accuracy = 1))