Last active
March 17, 2024 13:03
-
-
Save mschnetzer/783adbf40a27c461be6be1594238a159 to your computer and use it in GitHub Desktop.
Bruttoanlageinvestitionen in % des BIP (https://x.com/matschnetzer/status/1768627118580089130?s=20)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(tidyverse) | |
library(countrycode) | |
library(rdbnomics) | |
library(ggbump) | |
library(MetBrewer) | |
library(scales) | |
allcty <- codelist |> filter(!is.na(eu28)) |> pull(iso3c) |> tolower() | |
gfcf_private <- rdb(provider_code = "AMECO", dataset_code = "UIGP", | |
dimensions = list(geo = allcty, unit = "mrd-ecu-eur")) | |
gdp <- rdb(provider_code = "AMECO", dataset_code = "UVGD", | |
dimensions = list(geo = allcty, unit = "mrd-ecu-eur")) | |
data <- bind_rows(gfcf_private, gdp) |> | |
mutate(variable = case_when( | |
str_detect(dataset_name, "private") ~ "GFCF_p", | |
TRUE ~ "GDP")) |> | |
select(geo, variable, period, value) |> | |
pivot_wider(names_from = variable, values_from = value) |> | |
mutate(share_p = GFCF_p/GDP*100, year = year(period), geo = toupper(geo)) | |
ranked <- data |> | |
filter(year %in% c(2000, 2010, 2020)) |> | |
mutate(ranking = rank(desc(share_p), ties.method = "first"), .by = year) |> | |
mutate(ctry = countrycode(geo, "iso3c", "country.name.de"), | |
ctry = ifelse(geo == "CZE", "Tschechien", ctry)) | |
selected <- c("AUT", "DEU", "IRL", "FRA") | |
ranked |> | |
ggplot(aes(x = year, y = ranking, group = geo)) + | |
geom_bump(linewidth = 0.6, color = "gray90", smooth = 6) + | |
geom_bump(aes(color = geo), linewidth = 0.8, smooth = 6, | |
data = ~. |> filter(geo %in% selected)) + | |
geom_point(color = "white", size = 4) + | |
geom_point(color = "gray90", size = 2) + | |
geom_point(aes(color = geo), size = 2, | |
data = ~. |> filter(geo %in% selected)) + | |
geom_text(aes(label = ctry), x = 2021, hjust = 0, | |
color = "gray50", family = "Roboto Condensed", size = 3.5, | |
data = ranked |> slice_max(year, by = geo) |> | |
filter(!geo %in% selected)) + | |
geom_text(aes(label = ctry), x = 2021, hjust = 0, | |
color = "black", family = "Roboto Condensed", size = 3.5, | |
data = ranked |> slice_max(year, by = geo) |> | |
filter(geo %in% selected)) + | |
scale_color_manual(values = met.brewer("Juarez")) + | |
scale_x_continuous(limits = c(1999.8, 2027), expand = c(0.01,0), | |
breaks = c(2000, 2010, 2020)) + | |
scale_y_reverse(breaks = c(25,20,15,10,5,1), expand = c(0.02,0), | |
labels = number_format(suffix = ".")) + | |
labs(x = NULL, y = NULL, | |
title = toupper("Investitionstätigkeit in der EU"), | |
subtitle = "Ranking nach Bruttoanlageinvestitionen in % des BIP", | |
caption = "Anm.: Investionen des privaten Sektors. Daten: AMECO Grafik: @matschnetzer") + | |
theme_minimal(base_family = "Roboto Condensed", base_size = 12) + | |
theme(legend.position = "none", | |
panel.grid = element_blank(), | |
plot.title.position = "plot", | |
plot.title = element_text(size = 14, hjust = .5), | |
plot.subtitle = element_text(size = 10, hjust = .5), | |
plot.caption = element_text(size = 8)) | |
ggsave("gfcf.png", width = 4, height = 8, dpi = 320, bg = "white") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment