Macroeconomy - Euro Area - AME

Data - Banque de France

🇫🇷 Version française

Info

Last observation: Annuel: 31 déc 2027 (N = 8,652)

First observation: Annuel: 31 déc 1960 (N = 8,652)

Last data update: 10 aoû 2026, 23:37. Last compile: 14 aoû 2026, 21:24

Structure

LAST_DOWNLOAD

LAST_DOWNLOAD
2026-08-10

GDP at Purchasing Power Parity (PPP)

France, Germany, Italy, Spain

Code
AME |>

  filter(AME_ITEM == "UVGD",
         AME_REF_AREA %in% c("FRA", "DEU", "ITA", "ESP")) |>
  mutate(Ref_area = case_when(AME_REF_AREA == "FRA" ~ "France",
                               AME_REF_AREA == "DEU" ~ "Germany",
                               AME_REF_AREA == "ITA" ~ "Italy",
                               AME_REF_AREA == "ESP" ~ "Spain")) |>
  left_join(colors, by = c("Ref_area" = "country")) |>
  na.omit() |>
  ggplot() + geom_line(aes(x = date, y = value, color = color)) +
  theme_minimal() + xlab("") + ylab("") + scale_color_identity() + add_4flags +
  scale_x_date(breaks = seq(1960, 2100, 5) |> paste0("-01-01") |> as.Date(),
               labels = date_format("%Y")) +
  scale_y_continuous(labels = dollar_format(accuracy = 1, prefix = "", suffix = " bn PPP"))

Since 2000

Code
AME |>

  filter(AME_ITEM == "UVGD",
         AME_REF_AREA %in% c("FRA", "DEU", "ITA", "ESP")) |>
  filter(date >= as.Date("2000-01-01")) |>
  mutate(Ref_area = case_when(AME_REF_AREA == "FRA" ~ "France",
                               AME_REF_AREA == "DEU" ~ "Germany",
                               AME_REF_AREA == "ITA" ~ "Italy",
                               AME_REF_AREA == "ESP" ~ "Spain")) |>
  left_join(colors, by = c("Ref_area" = "country")) |>
  na.omit() |>
  ggplot() + geom_line(aes(x = date, y = value, color = color)) +
  theme_minimal() + xlab("") + ylab("") + scale_color_identity() + add_4flags +
  scale_x_date(breaks = seq(1960, 2100, 2) |> paste0("-01-01") |> as.Date(),
               labels = date_format("%Y")) +
  scale_y_continuous(labels = dollar_format(accuracy = 1, prefix = "", suffix = " bn PPP"))

Current Account (% of GDP)

France, Germany, Italy, Spain

Code
AME |>

  filter(AME_ITEM == "UBCA",
         AME_REF_AREA %in% c("FRA", "DEU", "ITA", "ESP")) |>
  mutate(Ref_area = case_when(AME_REF_AREA == "FRA" ~ "France",
                               AME_REF_AREA == "DEU" ~ "Germany",
                               AME_REF_AREA == "ITA" ~ "Italy",
                               AME_REF_AREA == "ESP" ~ "Spain"),
         value = value/100) |>
  left_join(colors, by = c("Ref_area" = "country")) |>
  na.omit() |>
  ggplot() + geom_line(aes(x = date, y = value, color = color)) +
  geom_hline(yintercept = 0, linetype = "dashed", color = "black") +
  theme_minimal() + xlab("") + ylab("") + scale_color_identity() + add_4flags +
  scale_x_date(breaks = seq(1960, 2100, 5) |> paste0("-01-01") |> as.Date(),
               labels = date_format("%Y")) +
  scale_y_continuous(labels = scales::percent_format(accuracy = 1))

Since 2000

Code
AME |>

  filter(AME_ITEM == "UBCA",
         AME_REF_AREA %in% c("FRA", "DEU", "ITA", "ESP")) |>
  filter(date >= as.Date("2000-01-01")) |>
  mutate(Ref_area = case_when(AME_REF_AREA == "FRA" ~ "France",
                               AME_REF_AREA == "DEU" ~ "Germany",
                               AME_REF_AREA == "ITA" ~ "Italy",
                               AME_REF_AREA == "ESP" ~ "Spain"),
         value = value/100) |>
  left_join(colors, by = c("Ref_area" = "country")) |>
  na.omit() |>
  ggplot() + geom_line(aes(x = date, y = value, color = color)) +
  geom_hline(yintercept = 0, linetype = "dashed", color = "black") +
  theme_minimal() + xlab("") + ylab("") + scale_color_identity() + add_4flags +
  scale_x_date(breaks = seq(1960, 2100, 2) |> paste0("-01-01") |> as.Date(),
               labels = date_format("%Y")) +
  scale_y_continuous(labels = scales::percent_format(accuracy = 1))

GDP per Capita at PPP: Latest Available Year

Code
AME |>

  filter(AME_ITEM == "HVGDP",
         AME_REF_AREA %in% c("FRA", "DEU", "ITA", "ESP")) |>
  filter(!is.na(value)) |>
  group_by(AME_REF_AREA) |>
  filter(date == max(date)) |>
  ungroup() |>
  mutate(Country = case_when(AME_REF_AREA == "FRA" ~ "France",
                              AME_REF_AREA == "DEU" ~ "Germany",
                              AME_REF_AREA == "ITA" ~ "Italy",
                              AME_REF_AREA == "ESP" ~ "Spain")) |>
  select(Country, date, value) |>
  arrange(desc(value)) |>
  print_table_conditional()
Country date value
Germany 2027-12-31 51.22
France 2027-12-31 43.43
Italy 2027-12-31 42.45
Spain 2027-12-31 41.14