Biens - Équilibre emplois-ressources - Volume (CVS-CJO) - t_biens_vol

Données - INSEE

Comptes trimestriels : équilibre emplois-ressources de l’ensemble des biens, en volume.

Structure

Équilibre emplois-ressources

Code
`t_biens_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_biens_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_biens_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 267.8 150.5 36.4 111.1 241.2 151.1 138.6 13.0 32.9 27.6 3.6 142.9
2026-01-01 268.1 148.5 36.5 110.7 240.9 150.4 138.2 12.6 32.9 27.4 3.6 137.2
2025-10-01 268.4 149.8 37.0 111.1 241.1 151.3 139.1 12.6 32.8 27.5 3.6 144.6
2025-07-01 268.4 151.1 36.8 110.6 240.7 150.4 138.3 12.5 33.2 27.9 3.6 143.1
2025-04-01 264.7 149.0 36.9 110.2 238.1 150.0 138.2 12.2 32.9 27.7 3.5 136.9
2025-01-01 265.1 146.7 36.8 109.5 238.1 150.1 138.4 11.9 32.5 27.4 3.3 136.6
2024-10-01 263.5 146.0 37.0 110.1 237.7 150.3 138.8 11.8 32.1 27.1 3.2 138.8
2024-07-01 263.5 145.1 36.9 109.2 238.1 149.8 138.5 11.6 32.1 27.1 3.2 135.2
2024-04-01 263.8 145.5 36.9 109.3 238.8 149.0 137.8 11.4 33.1 28.1 3.2 139.0