Exportations par zone - Volume (CVS-CJO) - t_zonexp_vol

Données - INSEE

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

Structure

Par zone

Code
`t_zonexp_vol` |>
  filter(variable %in% names(zl)) |>
  mutate(zone = zl[variable]) |>
  ggplot() + theme_minimal() + xlab("") + ylab("exportations (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_zonexp_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_zonexp_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 108.7 97.2 11.6 113.7 222.3
2026-01-01 108.6 97.2 11.5 107.6 216.1
2025-10-01 111.0 99.6 11.5 111.9 222.8
2025-07-01 111.4 100.2 11.3 109.2 220.5
2025-04-01 107.9 96.9 11.2 106.5 214.4
2025-01-01 104.7 94.1 10.8 109.5 214.1
2024-10-01 107.8 97.2 10.8 107.5 215.2
2024-07-01 108.0 97.4 10.9 103.5 211.6
2024-04-01 105.8 95.5 10.6 108.1 213.7