Last observation: 2025 (N = 233)
First observation: 1961 (N = 144)
Last data update: 16 aoû 2026, 20:07. Last compile: 17 aoû 2026, 23:35
Data - WDI
Last observation: 2025 (N = 233)
First observation: 1961 (N = 144)
Last data update: 16 aoû 2026, 20:07. Last compile: 17 aoû 2026, 23:35
NY.GDP.MKTP.KD.ZG |>
left_join(iso2c, by = "iso2c") |>
group_by(iso2c, Iso2c) |>
mutate(value = round(value, 2)) |>
summarise(Nobs = n(),
`Year 1` = first(year),
`GDP Growth 1` = first(value) |> paste0(" %"),
`Year 2` = last(year),
`GDP Growth 2` = last(value) |> paste0(" %")) |>
arrange(-Nobs) %>%
{if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}NY.GDP.MKTP.KD.ZG |>
filter(value < 0) |>
arrange(value) |>
mutate(value = round(value, 2)) |>
left_join(iso2c, by = "iso2c") |>
select(iso2c, Iso2c, year, value) %>%
{if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}NY.GDP.MKTP.KD.ZG |>
year_to_date() |>
filter(iso2c == "AR",
date >= as.Date("1996-01-01"),
date <= as.Date("2005-01-01")) |>
ggplot() + geom_line() + theme_minimal() +
aes(x = date, y = value/100) + xlab("") + ylab("GDP Growth") +
scale_x_date(breaks = seq(1900, 2100, 1) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(-100, 10000, 5),
labels = percent_format(a = 1)) +
geom_hline(yintercept = 0, linetype = "dashed", color = "grey")
NY.GDP.MKTP.KD.ZG |>
year_to_date() |>
filter(iso2c == "AR",
date >= as.Date("1996-01-01"),
date <= as.Date("2020-01-01")) |>
ggplot() + geom_line() + theme_minimal() +
aes(x = date, y = value/100) + xlab("") + ylab("GDP Growth") +
scale_x_date(breaks = seq(1900, 2100, 1) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(-100, 10000, 5),
labels = percent_format(a = 1)) +
geom_hline(yintercept = 0, linetype = "dashed", color = "grey")
NY.GDP.MKTP.KD.ZG |>
filter(iso2c == "CN") |>
left_join(iso2c, by = "iso2c") |>
year_to_date() |>
ggplot() + geom_line() + theme_minimal() +
aes(x = date, y = value/100) +
xlab("") + ylab("GDP Growth") +
scale_x_date(breaks = seq(1900, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(-100, 10000, 5),
labels = percent_format(a = 1)) +
geom_hline(yintercept = 0, linetype = "dashed", color = "grey")
NY.GDP.MKTP.KD.ZG |>
filter(iso2c == "CL") |>
left_join(iso2c, by = "iso2c") |>
year_to_date() |>
ggplot() + geom_line() + theme_minimal() +
aes(x = date, y = value/100) +
xlab("") + ylab("GDP Growth") +
scale_x_date(breaks = seq(1900, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(-100, 10000, 5),
labels = percent_format(a = 1)) +
geom_hline(yintercept = 0, linetype = "dashed", color = "grey")
NY.GDP.MKTP.KD.ZG |>
filter(iso2c == "BR") |>
left_join(iso2c, by = "iso2c") |>
year_to_date() |>
ggplot() + geom_line() + theme_minimal() +
aes(x = date, y = value/100) +
xlab("") + ylab("GDP Growth") +
scale_x_date(breaks = seq(1900, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(-100, 10000, 5),
labels = percent_format(a = 1)) +
geom_hline(yintercept = 0, linetype = "dashed", color = "grey")
NY.GDP.MKTP.KD.ZG |>
filter(iso2c == "RU") |>
left_join(iso2c, by = "iso2c") |>
year_to_date() |>
ggplot() + geom_line() + theme_minimal() +
aes(x = date, y = value/100) +
xlab("") + ylab("GDP Growth") +
scale_x_date(breaks = seq(1900, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(-100, 10000, 2),
labels = percent_format(a = 1)) +
geom_hline(yintercept = 0, linetype = "dashed", color = "grey")
NY.GDP.MKTP.KD.ZG |>
filter(iso2c == "KR") |>
left_join(iso2c, by = "iso2c") |>
year_to_date() |>
ggplot() + geom_line() + theme_minimal() +
aes(x = date, y = value/100) +
xlab("") + ylab("GDP Growth") +
scale_x_date(breaks = seq(1900, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(-100, 10000, 2),
labels = percent_format(a = 1)) +
geom_hline(yintercept = 0, linetype = "dashed", color = "grey")
NY.GDP.MKTP.KD.ZG |>
filter(iso2c %in% c("FR", "DE", "IT")) |>
left_join(iso2c, by = "iso2c") |>
year_to_date() |>
mutate(value = value/100) |>
left_join(colors, by = c("Iso2c" = "country")) |>
ggplot() + geom_line(aes(x = date, y = value, color = color)) +
theme_minimal() + xlab("") + ylab("GDP Growth") +
scale_color_identity() + add_flags +
theme(legend.title = element_blank(),
legend.position = c(0.6, 0.9),
legend.direction = "horizontal") +
scale_x_date(breaks = seq(1900, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(-100, 10000, 2),
labels = percent_format(a = 1)) +
geom_hline(yintercept = 0, linetype = "dashed", color = "grey")
NY.GDP.MKTP.KD.ZG |>
filter(iso2c %in% c("FR", "DE", "IT")) |>
left_join(iso2c, by = "iso2c") |>
year_to_date() |>
filter(date >= as.Date("1995-01-01")) |>
mutate(value = value/100) |>
left_join(colors, by = c("Iso2c" = "country")) |>
ggplot() + geom_line(aes(x = date, y = value, color = color)) +
theme_minimal() + xlab("") + ylab("GDP Growth") +
scale_color_identity() + add_flags +
theme(legend.title = element_blank(),
legend.position = c(0.6, 0.9),
legend.direction = "horizontal") +
scale_x_date(breaks = seq(1900, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(-100, 10000, 2),
labels = percent_format(a = 1)) +
geom_hline(yintercept = 0, linetype = "dashed", color = "grey")
NY.GDP.MKTP.KD.ZG |>
filter(iso2c %in% c("ES", "NL", "PT")) |>
left_join(iso2c, by = "iso2c") |>
year_to_date() |>
mutate(value = value/100) |>
left_join(colors, by = c("Iso2c" = "country")) |>
ggplot() + geom_line(aes(x = date, y = value, color = color)) +
theme_minimal() + xlab("") + ylab("GDP Growth") +
scale_color_identity() + add_flags +
theme(legend.title = element_blank(),
legend.position = c(0.6, 0.9),
legend.direction = "horizontal") +
scale_x_date(breaks = seq(1900, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(-100, 10000, 2),
labels = percent_format(a = 1)) +
geom_hline(yintercept = 0, linetype = "dashed", color = "grey")
NY.GDP.MKTP.KD.ZG |>
filter(iso2c %in% c("ES", "NL", "PT")) |>
left_join(iso2c, by = "iso2c") |>
year_to_date() |>
filter(date >= as.Date("1995-01-01")) |>
mutate(value = value/100) |>
left_join(colors, by = c("Iso2c" = "country")) |>
ggplot() + geom_line(aes(x = date, y = value, color = color)) +
theme_minimal() + xlab("") + ylab("GDP Growth") +
scale_color_identity() + add_flags +
theme(legend.title = element_blank(),
legend.position = c(0.6, 0.9),
legend.direction = "horizontal") +
scale_x_date(breaks = seq(1900, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(-100, 10000, 2),
labels = percent_format(a = 1)) +
geom_hline(yintercept = 0, linetype = "dashed", color = "grey")
NY.GDP.MKTP.KD.ZG |>
filter(iso2c %in% c("JP", "GB", "US")) |>
left_join(iso2c, by = "iso2c") |>
year_to_date() |>
mutate(value = value/100) |>
left_join(colors, by = c("Iso2c" = "country")) |>
ggplot() + geom_line(aes(x = date, y = value, color = color)) +
theme_minimal() + xlab("") + ylab("GDP Growth") +
scale_color_identity() + add_flags +
theme(legend.title = element_blank(),
legend.position = c(0.6, 0.9),
legend.direction = "horizontal") +
scale_x_date(breaks = seq(1900, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(-100, 10000, 2),
labels = percent_format(a = 1)) +
geom_hline(yintercept = 0, linetype = "dashed", color = "grey")
NY.GDP.MKTP.KD.ZG |>
filter(iso2c %in% c("JP", "GB", "US")) |>
left_join(iso2c, by = "iso2c") |>
year_to_date() |>
filter(date >= as.Date("1995-01-01")) |>
mutate(value = value/100) |>
left_join(colors, by = c("Iso2c" = "country")) |>
ggplot() + geom_line(aes(x = date, y = value, color = color)) +
theme_minimal() + xlab("") + ylab("GDP Growth") +
scale_color_identity() + add_flags +
theme(legend.title = element_blank(),
legend.position = c(0.6, 0.9),
legend.direction = "horizontal") +
scale_x_date(breaks = seq(1900, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01*seq(-100, 10000, 2),
labels = percent_format(a = 1)) +
geom_hline(yintercept = 0, linetype = "dashed", color = "grey")