Produits manufacturés - Équilibre emplois-ressources - Volume (prix de l’année précédente chaînés, CVS-CJO) - t_manuf_vol

Données - INSEE

Comptes trimestriels : équilibre emplois-ressources des produits manufacturés, en volume.

Structure

Équilibre emplois-ressources

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

Croissance de la production (glissement annuel)

Code
`t_manuf_vol` |>
  filter(variable == "P1") |>
  arrange(date) |>
  mutate(g = value / lag(value, 4) - 1) |>
  filter(date >= as.Date("1980-01-01")) |>
  ggplot() + theme_minimal() + xlab("") + ylab("Glissement annuel de la production") +
  geom_hline(yintercept = 0, color = "grey60") +
  geom_line(aes(x = date, y = g)) +
  scale_x_date(date_breaks = "10 years", date_labels = "%Y") +
  scale_y_continuous(labels = percent_format(accuracy = 1))

Derniers trimestres

Code
`t_manuf_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 P1 P7 D2N P9 P2 P3 P3M P31G P51 P51S P51G P6
2026-04-01 208.5 141.4 31.0 104.3 189.5 130.1 117.6 13.0 32.7 27.4 3.6 133.0
2026-01-01 208.4 139.1 31.1 104.0 189.2 129.3 117.1 12.7 32.6 27.2 3.6 127.3
2025-10-01 207.4 140.7 31.5 104.3 188.9 129.8 117.6 12.6 32.6 27.2 3.6 134.4
2025-07-01 207.9 142.2 31.3 103.9 188.8 129.1 117.1 12.5 33.0 27.7 3.6 133.1
2025-04-01 205.9 140.1 31.5 103.5 187.4 129.3 117.5 12.3 32.7 27.5 3.5 127.3
2025-01-01 204.9 137.6 31.4 103.0 186.2 128.5 116.9 11.9 32.2 27.2 3.3 127.4
2024-10-01 203.2 137.3 31.7 103.6 185.6 129.2 117.7 11.8 31.9 26.9 3.2 129.5
2024-07-01 203.0 136.4 31.7 102.9 186.1 128.7 117.4 11.6 31.9 26.9 3.2 125.6
2024-04-01 203.9 136.6 31.8 103.0 186.8 128.1 116.9 11.4 32.9 27.9 3.2 129.8