Last observation: 2025 (N = 43)
First observation: 2014 (N = 43)
Last data update: 14 aoû 2026, 22:40. Last compile: 18 aoû 2026, 04:28
Data - Eurostat
Last observation: 2025 (N = 43)
First observation: 2014 (N = 43)
Last data update: 14 aoû 2026, 22:40. Last compile: 18 aoû 2026, 04:28
tec00114 |>
filter(time %in% c("1995", "2024")) |>
select(time, values, geo, Geo) |>
spread(time, values) |>
arrange(desc(`2024`)) |>
mutate(Geo = ifelse(geo == "DE", "Germany", Geo)) |>
mutate(Flag = gsub(" ", "-", str_to_lower(Geo)),
Flag = paste0('<img src="../../icon/flag/vsmall/', Flag, '.png" alt="Flag">')) |>
select(Flag, everything()) %>%
{if (is_html_output()) datatable(., filter = 'top', rownames = F, escape = F) else .}tec00114 |>
filter(geo %in% c("FR", "DE", "IT", "ES")) |>
select(time, geo, Geo, values) |>
year_to_date() |>
left_join(colors, by = c("Geo" = "country")) |>
ggplot() + geom_line(aes(x = date, y = values, color = color)) +
scale_color_identity() + add_flags +
theme_minimal() + xlab("") + ylab("") +
scale_x_date(breaks = as.Date(paste0(seq(1960,2100, 1), "-01-01")),
labels = date_format("%Y")) +
theme(legend.position = c(0.35, 0.85),
legend.title = element_blank()) +
scale_y_continuous(breaks = seq(0, 200, 2)) +
geom_hline(yintercept = 100, linetype = "dashed")
tec00114 |>
filter(geo %in% c("EL", "PL", "HU")) |>
select(time, geo, Geo, values) |>
year_to_date() |>
left_join(colors, by = c("Geo" = "country")) |>
ggplot() + geom_line(aes(x = date, y = values, color = color)) +
scale_color_identity() + add_flags +
theme_minimal() + xlab("") + ylab("PIB/hab., Parité de Pouvoir d'Achat (EU-27 2020 = 100)") +
scale_x_date(breaks = as.Date(paste0(seq(1960,2100, 1), "-01-01")),
labels = date_format("%Y")) +
theme(legend.position = c(0.35, 0.85),
legend.title = element_blank()) +
scale_y_continuous(breaks = seq(0, 200, 2)) +
geom_hline(yintercept = 100, linetype = "dashed")
tec00114 |>
filter(geo %in% c("EL", "PL", "HU", "FR", "DE", "IT", "ES", "NL")) |>
select(time, geo, Geo, values) |>
year_to_date() |>
left_join(colors, by = c("Geo" = "country")) |>
ggplot() + geom_line(aes(x = date, y = values, color = color)) +
scale_color_identity() + add_flags +
theme_minimal() + xlab("") + ylab("PIB/hab., Parité de Pouvoir d'Achat (EU-27 2020 = 100)") +
scale_x_date(breaks = as.Date(paste0(seq(1960,2100, 1), "-01-01")),
labels = date_format("%Y")) +
theme(legend.position = c(0.35, 0.85),
legend.title = element_blank()) +
scale_y_log10(breaks = seq(0, 200, 5)) +
geom_hline(yintercept = 100, linetype = "dashed")
geo <- read_parquet("geo_fr.parquet")
geo_fr <- geo |>
setNames(c("geo", "Geo_fr"))
geo <- read_parquet("geo.parquet")
tec00114 |>
filter(geo %in% c("EL", "PL", "FR", "DE")) |>
select(time, geo, Geo, values) |>
left_join(geo_fr, by = "geo") |>
year_to_date() |>
left_join(colors, by = c("Geo" = "country")) |>
ggplot() + geom_line(aes(x = date, y = values, color = color)) +
scale_color_identity() + add_flags +
theme_minimal() + xlab("") + ylab("PIB/hab., Parité de Pouvoir d'Achat (EU-27 2020 = 100)") +
scale_x_date(breaks = as.Date(paste0(seq(1960,2100, 1), "-01-01")),
labels = date_format("%Y")) +
theme(legend.position = c(0.35, 0.85),
legend.title = element_blank()) +
scale_y_log10(breaks = seq(0, 200, 5)) +
geom_hline(yintercept = 100, linetype = "dashed") +
geom_text(data = . %>% filter(date == max(date)), aes(x = date, y = values, label = Geo_fr, color = color))
geo <- read_parquet("geo_fr.parquet")
geo_fr <- geo |>
setNames(c("geo", "Geo_fr"))
geo <- read_parquet("geo.parquet")
tec00114 |>
filter(geo %in% c("EL", "PL", "FR", "DE", "IT", "ES")) |>
select(time, geo, Geo, values) |>
left_join(geo_fr, by = "geo") |>
year_to_date() |>
left_join(colors, by = c("Geo" = "country")) |>
ggplot() + geom_line(aes(x = date, y = values, color = color)) +
scale_color_identity() + add_flags +
theme_minimal() + xlab("") + ylab("PIB/hab., Parité de Pouvoir d'Achat (EU-27 2020 = 100)") +
scale_x_date(breaks = as.Date(paste0(seq(1960,2100, 1), "-01-01")),
labels = date_format("%Y")) +
theme(legend.position = c(0.35, 0.85),
legend.title = element_blank()) +
scale_y_log10(breaks = seq(0, 200, 5)) +
geom_hline(yintercept = 100, linetype = "dashed") +
geom_text(data = . %>% filter(date == max(date)), aes(x = date, y = values, label = Geo_fr, color = color))
tec00114 |>
filter(geo %in% c("FR", "DE", "IT", "ES", "US", "EU27_2020", "UK", "NL")) |>
select(time, geo, Geo, values) |>
year_to_date() |>
mutate(Geo = ifelse(geo == "EU27_2020", "Europe", Geo)) |>
left_join(colors, by = c("Geo" = "country")) |>
mutate(color = ifelse(geo == "UK", color2, color)) |>
ggplot() + geom_line(aes(x = date, y = values, color = color)) +
scale_color_identity() + add_flags +
theme_minimal() + xlab("") + ylab("PIB/hab., Parité de Pouvoir d'Achat (EU-27 2020 = 100)") +
scale_x_date(breaks = as.Date(paste0(seq(1960,2100, 1), "-01-01")),
labels = date_format("%Y")) +
theme(legend.position = c(0.35, 0.85),
legend.title = element_blank()) +
scale_y_log10(breaks = seq(0, 200, 5)) +
geom_hline(yintercept = 100, linetype = "dashed")
tec00114 |>
filter(geo %in% c("EL", "PL", "HU", "FR", "DE", "IT", "ES", "US", "UK")) |>
select(time, geo, Geo, values) |>
year_to_date() |>
left_join(colors, by = c("Geo" = "country")) |>
mutate(color = ifelse(geo == "UK", color2, color)) |>
ggplot() + geom_line(aes(x = date, y = values, color = color)) +
scale_color_identity() + add_flags +
theme_minimal() + xlab("") + ylab("PIB/hab., Parité de Pouvoir d'Achat\nEU-27 2020 = 100") +
scale_x_date(breaks = as.Date(paste0(seq(1960,2100, 1), "-01-01")),
labels = date_format("%Y")) +
theme(legend.position = c(0.35, 0.85),
legend.title = element_blank()) +
scale_y_log10(breaks = seq(0, 200, 5)) +
geom_hline(yintercept = 100, linetype = "dashed")
tec00114 |>
filter(geo %in% c("FR", "DE", "IT", "UK", "CH", "US")) |>
select(time, geo, Geo, values) |>
year_to_date() |>
left_join(colors, by = c("Geo" = "country")) |>
ggplot() + geom_line(aes(x = date, y = values, color = color)) +
scale_color_identity() + add_flags +
theme_minimal() + xlab("") + ylab("PIB/hab., Parité de Pouvoir d'Achat (EU-27 2020 = 100)") +
scale_x_date(breaks = as.Date(paste0(seq(1960,2100, 1), "-01-01")),
labels = date_format("%Y")) +
theme(legend.position = c(0.35, 0.85),
legend.title = element_blank()) +
scale_y_log10(breaks = seq(0, 200, 5)) +
geom_hline(yintercept = 100, linetype = "dashed")