Produits manufacturés - Équilibre emplois-ressources - Valeurs aux prix courants - t_manuf_val

Données - INSEE

Comptes trimestriels : équilibre emplois-ressources des produits manufacturés, à prix courants.

Structure

Équilibre emplois-ressources

Code
`t_manuf_val` |>
  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_val` |>
  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_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 P1 P7 D2N P9 P2 P3 P3M P31G P51 P51S P51G P54 P6
2026-04-01 258.0 173.4 36.2 123.4 239.1 151.6 140.1 11.6 38.7 32.7 4.1 -0.7 162.3
2026-01-01 252.3 165.4 35.8 121.5 231.9 148.7 137.3 11.4 38.2 32.2 4.0 4.7 151.7
2025-10-01 249.4 165.5 35.9 121.7 230.2 148.1 136.6 11.5 38.1 32.1 4.0 -2.4 158.4
2025-07-01 249.4 167.1 35.8 121.3 230.9 147.4 136.0 11.4 38.3 32.5 4.0 0.7 156.4
2025-04-01 248.1 165.1 35.7 121.0 230.1 147.2 136.0 11.2 38.0 32.2 3.9 4.4 150.2
2025-01-01 248.4 164.5 35.3 120.6 229.6 146.5 135.5 11.0 37.5 31.9 3.7 2.9 152.3
2024-10-01 244.8 163.7 35.1 120.7 227.6 146.8 135.9 10.9 36.8 31.2 3.6 -1.2 154.4
2024-07-01 244.0 161.9 35.0 119.7 226.5 146.5 135.6 10.8 36.6 31.1 3.5 1.7 149.2
2024-04-01 244.4 162.6 35.3 119.8 227.0 146.4 135.8 10.7 37.6 32.1 3.5 -3.1 154.1