Construction - Équilibre emplois-ressources - Volume (CVS-CJO) - t_construc_vol

Données - INSEE

Comptes trimestriels : équilibre emplois-ressources de la construction, en volume.

Structure

Équilibre emplois-ressources

Code
`t_construc_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_construc_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_construc_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 P2 P3 P51 P51S P51G P51M P6
2026-04-01 82.0 0.6 7.6 24.8 6.3 59.0 20.3 15.1 20.5 0.1
2026-01-01 82.2 0.5 7.6 24.8 6.3 59.2 20.2 15.4 20.5 0.1
2025-10-01 83.7 0.5 7.8 25.1 6.3 60.4 20.6 15.8 21.0 0.2
2025-07-01 83.4 0.5 7.7 25.0 6.3 60.2 20.5 15.7 21.0 0.2
2025-04-01 83.3 0.5 7.7 25.0 6.3 60.1 20.4 15.7 20.8 0.2
2025-01-01 83.4 0.5 7.7 25.1 6.3 60.2 20.6 15.4 21.0 0.2
2024-10-01 84.0 0.5 7.8 25.4 6.4 60.7 21.0 15.3 21.1 0.2
2024-07-01 84.9 0.5 7.9 25.6 6.4 61.5 21.3 15.5 21.3 0.2
2024-04-01 85.3 0.5 8.0 25.6 6.4 61.8 21.3 15.5 21.6 0.2