Last observation: 2012 (N = 17730)
First observation: 1977 (N = 494)
Last data update: 14 aoû 2026, 21:05. Last compile: 18 aoû 2026, 03:21
Data - Eurostat
Last observation: 2012 (N = 17730)
First observation: 1977 (N = 494)
Last data update: 14 aoû 2026, 21:05. Last compile: 18 aoû 2026, 03:21
pat_ep_rtec |>
filter(geo %in% c("FR", "DE", "IT"),
ipc == "HT",
unit == "P_MHAB") |>
year_to_date() |>
left_join(colors, by = c("Geo" = "country")) |>
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(1975, 2100, 5), "-01-01")),
labels = date_format("%Y")) +
theme(legend.position = c(0.2, 0.85),
legend.title = element_blank()) +
xlab("") + ylab("High-tech patent applications (per million inhabitants)")
pat_ep_rtec |>
filter(geo == "FR",
ipc %in% c("CTE", "SMC", "MGE"),
unit == "P_MHAB") |>
year_to_date() |>
ggplot() + geom_line(aes(x = date, y = values, color = Ipc)) +
theme_minimal() +
scale_x_date(breaks = as.Date(paste0(seq(1975, 2100, 5), "-01-01")),
labels = date_format("%Y")) +
theme(legend.position = c(0.3, 0.85),
legend.title = element_blank()) +
xlab("") + ylab("Patent applications (per million inhabitants)")
latest_y <- pat_ep_rtec |>
filter(nchar(geo) == 2,
ipc == "HT",
unit == "P_MHAB",
!is.na(values)) |>
summarise(m = max(time)) |>
pull(m)
pat_ep_rtec |>
filter(nchar(geo) == 2,
ipc == "HT",
unit == "P_MHAB",
time == latest_y) |>
mutate(values = round(values, 1)) |>
select(Geo, values) |>
arrange(-values) |>
print_table_conditional()