Last observation: 2025 (N = 284)
First observation: 1970 (N = 15)
Last data update: 14 aoû 2026, 22:21. Last compile: 18 aoû 2026, 03:58
Data - Eurostat
Last observation: 2025 (N = 284)
First observation: 1970 (N = 15)
Last data update: 14 aoû 2026, 22:21. Last compile: 18 aoû 2026, 03:58
road_eqr_carmot |>
filter(geo == "FR",
mot_nrg == "PET",
engine != "TOTAL") |>
year_to_date() |>
arrange(date) |>
mutate(values = values/1000) |>
ggplot() + geom_line(aes(x = date, y = values, color = Engine)) +
theme_minimal() +
scale_x_date(breaks = seq(1960, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
theme(legend.position = c(0.25, 0.85),
legend.title = element_blank()) +
xlab("") + ylab("New petrol car registrations") +
scale_y_continuous(labels = dollar_format(accuracy = 1, prefix = "", suffix = "K"))
latest_y <- road_eqr_carmot |>
filter(geo == "FR",
engine == "TOTAL",
mot_nrg == "TOTAL",
!is.na(values)) |>
summarise(m = max(time)) |>
pull(m)
road_eqr_carmot |>
filter(geo %in% c("FR", "DE", "IT", "ES", "PT", "EU27_2020"),
engine == "TOTAL",
mot_nrg %in% c("DIE", "PET", "TOTAL"),
time == latest_y) |>
mutate(values = values/1000) |>
select(Geo, Mot_nrg, values) |>
spread(Mot_nrg, values) |>
arrange(-Total) |>
print_table_conditional()| Geo | Diesel | Petrol | Total |
|---|---|---|---|
| European Union - 27 countries (from 2020) | 1504.479 | 7188.141 | 10937.447 |
| Germany | 580.059 | 1720.095 | 2857.591 |
| France | 123.172 | 1180.071 | 1690.293 |
| Italy | 237.079 | 1075.387 | 1550.451 |
| Spain | 160.946 | 880.672 | 1206.838 |
| Portugal | 18.095 | 133.977 | 224.886 |
road_eqr_carmot |>
filter(geo %in% c("FR", "DE", "IT"),
engine == "TOTAL",
mot_nrg == "TOTAL") |>
year_to_date() |>
arrange(date) |>
mutate(values = values/1000) |>
left_join(colors, by = c("Geo" = "country")) |>
ggplot() + geom_line(aes(x = date, y = values, color = color)) +
theme_minimal() + xlab("") + ylab("New registrations of passenger cars") +
scale_x_date(breaks = seq(1960, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
add_flags + scale_color_identity() +
scale_y_continuous(breaks = seq(0, 10000, 500),
labels = dollar_format(accuracy = 1, prefix = "", suffix = "K"))
road_eqr_carmot |>
filter(geo %in% c("ES", "PT", "UK"),
engine == "TOTAL",
mot_nrg == "TOTAL") |>
year_to_date() |>
arrange(date) |>
mutate(values = values/1000) |>
left_join(colors, by = c("Geo" = "country")) |>
ggplot() + geom_line(aes(x = date, y = values, color = color)) +
theme_minimal() + xlab("") + ylab("New registrations of passenger cars") +
scale_x_date(breaks = seq(1960, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
add_flags + scale_color_identity() +
scale_y_continuous(breaks = seq(0, 10000, 500),
labels = dollar_format(accuracy = 1, prefix = "", suffix = "K"))