Net international investment position - quarterly data, % of GDP - tipsii40
Data - Eurostat
Last observation: Q1 2026 (N = 28)
First observation: Q4 1995 (N = 6)
Last data update: 16 juil. 2026, 01:03
Last compile: 05 sept. 2026, 01:03
Structure
France, Germany, Italy, Belgium, Netherlands, Spain, Greece
Code
tipsii40 |>
filter(geo %in% c("DE", "BE", "FR", "IT", "NL", "ES", "EL"),
unit == "PC_GDP") |>
quarter_to_date() |>
add_flag_color("Geo") |>
mutate(values = values/100) |>
ggplot() + geom_line(aes(x = date, y = values, color = color)) + theme_minimal() +
scale_color_identity() + add_flags +
scale_x_date(breaks = as.Date(paste0(seq(1960, 2100, 2), "-01-01")),
labels = date_format("%Y")) +
xlab("") + ylab("Net international investment position") +
scale_y_continuous(breaks = 0.01*seq(-300, 200, 20),
labels = scales::percent_format(accuracy = 1)) +
geom_hline(yintercept = 0, linetype = "dashed")
France, Germany, Italy, Belgium, Netherlands
Code
tipsii40 |>
filter(geo %in% c("DE", "BE", "FR", "IT", "NL", "ES"),
unit == "PC_GDP") |>
quarter_to_date() |>
add_flag_color("Geo") |>
mutate(values = values/100) |>
ggplot() + geom_line(aes(x = date, y = values, color = color)) + theme_minimal() +
scale_color_identity() + add_flags +
scale_x_date(breaks = as.Date(paste0(seq(1960, 2100, 2), "-01-01")),
labels = date_format("%Y")) +
xlab("") + ylab("Net international investment position") +
scale_y_continuous(breaks = 0.01*seq(-300, 200, 10),
labels = scales::percent_format(accuracy = 1)) +
geom_hline(yintercept = -0.35, linetype = "dashed") +
geom_hline(yintercept = 0, linetype = "solid")
France, Germany, Italy, Spain, Netherlands
All
Code
tipsii40 |>
filter(geo %in% c("DE", "ES", "FR", "IT", "NL"),
unit == "PC_GDP") |>
quarter_to_date() |>
add_flag_color("Geo") |>
mutate(values = values/100) |>
ggplot() + geom_line(aes(x = date, y = values, color = color)) + theme_minimal() +
scale_color_identity() + add_flags +
scale_x_date(breaks = as.Date(paste0(seq(1960, 2100, 2), "-01-01")),
labels = date_format("%Y")) +
xlab("") + ylab("Net international investment position") +
scale_y_continuous(breaks = 0.01*seq(-300, 200, 20),
labels = scales::percent_format(accuracy = 1)) +
geom_hline(yintercept = -0.35, linetype = "dashed") +
geom_hline(yintercept = 0, linetype = "solid")
2000-
Code
tipsii40 |>
filter(geo %in% c("DE", "ES", "FR", "IT", "NL"),
unit == "PC_GDP") |>
quarter_to_date() |>
add_flag_color("Geo") |>
mutate(values = values/100) |>
filter(date >= as.Date("2000-01-01")) |>
ggplot() + geom_line(aes(x = date, y = values, color = color)) + theme_minimal() +
scale_color_identity() + add_flags +
scale_x_date(breaks = as.Date(paste0(seq(1960, 2100, 2), "-01-01")),
labels = date_format("%Y")) +
xlab("") + ylab("Net international investment position") +
scale_y_continuous(breaks = 0.01*seq(-300, 200, 20),
labels = scales::percent_format(accuracy = 1)) +
geom_hline(yintercept = -0.35, linetype = "dashed") +
geom_hline(yintercept = 0, linetype = "solid")
2010-
Code
tipsii40 |>
filter(geo %in% c("DE", "ES", "FR", "IT", "NL"),
unit == "PC_GDP") |>
quarter_to_date() |>
add_flag_color("Geo") |>
mutate(values = values/100) |>
filter(date >= as.Date("2010-01-01")) |>
ggplot() + geom_line(aes(x = date, y = values, color = color)) + theme_minimal() +
scale_color_identity() + add_flags +
scale_x_date(breaks = as.Date(paste0(seq(1960, 2100, 2), "-01-01")),
labels = date_format("%Y")) +
xlab("") + ylab("Net international investment position") +
scale_y_continuous(breaks = 0.01*seq(-300, 200, 20),
labels = scales::percent_format(accuracy = 1)) +
geom_hline(yintercept = -0.35, linetype = "dashed") +
geom_hline(yintercept = 0, linetype = "solid")
2017-
Code
tipsii40 |>
filter(geo %in% c("DE", "ES", "FR", "IT", "NL"),
unit == "PC_GDP") |>
quarter_to_date() |>
add_flag_color("Geo") |>
mutate(values = values/100) |>
filter(date >= as.Date("2017-01-01")) |>
ggplot() + geom_line(aes(x = date, y = values, color = color)) + theme_minimal() +
scale_color_identity() + add_flags +
scale_x_date(breaks = as.Date(paste0(seq(1960, 2100, 1), "-01-01")),
labels = date_format("%Y")) +
xlab("") + ylab("Net international investment position") +
scale_y_continuous(breaks = 0.01*seq(-300, 200, 20),
labels = scales::percent_format(accuracy = 1)) +
geom_hline(yintercept = -0.35, linetype = "dashed") +
geom_hline(yintercept = 0, linetype = "solid")