Importations par zone - Volume (CVS-CJO) - t_zonimp_vol

Données - INSEE

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

Structure

Par zone

Code
`t_zonimp_vol` |>
  filter(variable %in% names(zl)) |>
  mutate(zone = zl[variable]) |>
  ggplot() + theme_minimal() + xlab("") + ylab("importations (volume)") +
  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_vol` |>
  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_vol` |>
  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 107.2 92.6 14.8 106.4 213.7
2026-01-01 106.9 92.3 14.8 104.4 211.4
2025-10-01 108.5 93.8 14.8 104.1 212.6
2025-07-01 112.6 97.6 15.1 101.2 213.7
2025-04-01 109.7 95.3 14.5 102.0 211.7
2025-01-01 106.1 92.2 14.1 103.3 209.4
2024-10-01 106.9 93.0 14.1 101.1 208.0
2024-07-01 107.3 93.7 13.7 98.6 205.8
2024-04-01 108.6 95.4 13.2 96.6 205.1