Services marchands - Équilibre emplois-ressources - Volume (CVS-CJO) - t_servmarch_vol

Données - INSEE

Comptes trimestriels : équilibre emplois-ressources des services principalement marchands, en volume.

Structure

Équilibre emplois-ressources

Code
`t_servmarch_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_servmarch_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_servmarch_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 P51M P6
2026-04-01 679.6 56.8 24.6 -111.1 332.0 200.2 173.3 13.3 51.5 32.3 7.7 62.2
2026-01-01 677.8 56.5 24.7 -110.7 331.1 199.8 173.1 13.2 51.8 32.5 7.8 61.5
2025-10-01 677.1 56.6 24.7 -111.1 330.7 199.6 173.0 13.2 51.6 32.4 7.8 61.0
2025-07-01 674.0 56.5 24.6 -110.6 329.0 199.2 172.6 13.2 51.3 32.3 7.6 60.7
2025-04-01 670.8 56.4 24.5 -110.2 326.8 198.6 172.2 13.1 50.6 31.7 7.6 61.0
2025-01-01 667.9 56.4 24.3 -109.5 325.4 197.7 171.2 13.1 50.4 31.5 7.4 61.2
2024-10-01 666.5 55.6 24.1 -110.1 324.4 197.2 170.6 13.2 49.8 31.2 7.1 60.6
2024-07-01 665.4 54.6 23.8 -109.2 323.1 197.7 171.2 13.1 48.8 30.7 6.7 60.9
2024-04-01 661.0 53.6 23.7 -109.3 321.3 195.4 168.9 13.1 48.7 30.7 6.7 59.4