Balance of Payments (BOP) 2026 February - BOP_2026_FEB_VINTAGE

Data - IMF

Structure

Current Account Components

France, Germany, Italy

Code
BOP_2026_FEB_VINTAGE |>
  filter(INDICATOR == "CAB",
         COUNTRY %in% c("FRA", "DEU", "ITA"),
         BOP_ACCOUNTING_ENTRY == "NETCD_T",
         FREQUENCY == "A") |>
  mutate(date = as.Date(paste0(TIME_PERIOD, "-01-01"))) |>
  add_flag_color("Country") |>
  ggplot() + scale_color_identity() + add_flags +
  geom_line(aes(x = date, y = OBS_VALUE, color = color)) +
  theme_minimal() + xlab("") + ylab("")

China, United States

Code
BOP_2026_FEB_VINTAGE |>
  filter(INDICATOR == "CAB",
         COUNTRY %in% c("CHN", "USA"),
         BOP_ACCOUNTING_ENTRY == "NETCD_T",
         FREQUENCY == "A") |>
  mutate(date = as.Date(paste0(TIME_PERIOD, "-01-01"))) |>
  add_flag_color("Country") |>
  ggplot() + scale_color_identity() + add_flags +
  geom_line(aes(x = date, y = OBS_VALUE, color = color)) +
  theme_minimal() + xlab("") + ylab("")

Goods and Services