Last observation: Q4 2025 (N = 1) · 2024 (N = 2)
First observation: 1997 (N = 2) · Q4 1999 (N = 1)
Last data update: 11 sept. 2026, 23:52
Last compile: 20 sept. 2026, 23:48
| date | Nobs |
|---|---|
| 2025-12-31 | 1 |
| 2025-09-30 | 1 |
DET |>
ggplot() + geom_line(aes(x = date, y = value/100, color = Variable)) +
theme_minimal() + xlab("") + ylab("") +
scale_x_date(breaks = "2 years",
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(-100, 90, 10),
labels = scales::percent_format(accuracy = 1)) +
theme(legend.position = c(0.6, 0.19),
legend.title = element_blank(),
legend.direction = "vertical")
DET |>
filter(variable == "DET.Q.FR.1315.F33000.M.Z9.8.F") |>
ggplot() + geom_line(aes(x = date, y = value/100)) +
scale_x_date(breaks = "2 years",
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(-100, 90, 10),
labels = scales::percent_format(accuracy = 1)) +
theme(legend.position = c(0.6, 0.19),
legend.title = element_blank(),
legend.direction = "vertical") +
labs(x = "", y = "", title = "Détention par les non-résidents de la Dette Négociable de l'Etat (en %)") +
theme_minimal()
DET |>
filter(variable != "DET.A.FR.11C2.F51100.M.Z9.8.F") |>
ggplot() + geom_line(aes(x = date, y = value/100, color = Variable)) +
scale_x_date(breaks = "2 years",
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(-100, 90, 10),
labels = scales::percent_format(accuracy = 1)) +
theme(legend.position = c(0.6, 0.19),
legend.title = element_blank(),
legend.direction = "vertical") +
labs(x = "", y = "", title = "Détention par les non-résidents de la Dette Négociable de l'Etat (en %)") +
theme_minimal() +
theme(legend.position = c(0.6, 0.19),
legend.title = element_blank(),
legend.direction = "vertical")