Importations par zone - Valeurs aux prix courants - t_zonimp_val

Données - INSEE

Comptes trimestriels : importations (Mds €) par zone géographique de destination ou d’origine, depuis 2005.

Structure

Par zone

Code
`t_zonimp_val` |>
  filter(variable %in% names(zl)) |>
  mutate(zone = zl[variable]) |>
  ggplot() + theme_minimal() + xlab("") + ylab("importations (Mds €)") +
  geom_line(aes(x = date, y = value, color = zone)) +
  scale_x_date(date_breaks = "5 years", date_labels = "%Y") +
  theme(legend.title = element_blank(), legend.position = "bottom") +
  guides(color = guide_legend(nrow = 3))

Glissement annuel (reste du monde)

Code
`t_zonimp_val` |>
  filter(variable == "S2") |>
  arrange(date) |> mutate(g = value / lag(value, 4) - 1) |>
  ggplot() + theme_minimal() + xlab("") + ylab("Glissement annuel") +
  geom_hline(yintercept = 0, color = "grey60") +
  geom_line(aes(x = date, y = g)) +
  scale_x_date(date_breaks = "5 years", date_labels = "%Y") +
  scale_y_continuous(labels = percent_format(accuracy = 1))

Derniers trimestres

Code
`t_zonimp_val` |>
  filter(date >= last_d %m-% months(24)) |>
  mutate(value = round(value, 1)) |>
  tidyr::pivot_wider(names_from = variable, values_from = value) |>
  arrange(desc(date)) |>
  print_table_conditional()
date S21 S2111 S2112 S22 S2
2026-04-01 132.6 115.2 17.4 136.5 269.1
2026-01-01 129.0 111.8 17.1 128.1 257.0
2025-10-01 130.1 112.9 17.2 124.9 255.0
2025-07-01 134.5 117.0 17.5 123.1 257.6
2025-04-01 130.7 114.0 16.8 125.2 255.9
2025-01-01 128.1 111.8 16.3 130.2 258.3
2024-10-01 129.4 113.2 16.2 125.2 254.6
2024-07-01 129.6 113.9 15.7 121.4 251.1
2024-04-01 132.0 116.8 15.2 121.3 253.3