Former euro area national currencies vs. euro/ECU - daily data - ert_h_eur_d

Data - Eurostat

Last observation: 31 déc. 2025 (N = 21)

First observation: 1 juil. 1974 (N = 8)

Last data update: 31 août 2026, 08:35

Last compile: 05 sept. 2026, 00:07

Structure

To know more…

DEM, FRF

All

Code
ert_h_eur_d |>
  filter(currency %in% c("DEM", "FRF")) |>
  left_join(currency, by = "currency") |>
  day_to_date() |>
  mutate(Geo = case_when(currency == "DEM" ~ "Germany",
                         currency == "FRF" ~ "France",
                         currency == "ITA" ~ "Italy")) |>
  add_flag_color("Geo") |>
  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("") +
  scale_y_continuous(breaks = seq(0, 10, 0.5))