Services marchands - Équilibre emplois-ressources - Valeurs aux prix courants - t_servmarch_val

Données - INSEE

Comptes trimestriels : équilibre emplois-ressources des services principalement marchands, à prix courants.

Structure

Équilibre emplois-ressources

Code
`t_servmarch_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_servmarch_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_servmarch_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 P51M P54 P6
2026-04-01 771.8 64.1 30.8 -132.8 369.6 231.8 204.6 12.1 57.3 35.7 8.5 0.0 70.3
2026-01-01 762.1 62.9 30.8 -130.4 365.5 229.8 202.9 12.0 57.2 35.6 8.5 0.0 68.0
2025-10-01 757.2 62.7 30.4 -130.6 362.2 228.6 202.0 11.9 56.8 35.3 8.5 0.0 67.1
2025-07-01 752.8 62.6 30.2 -130.4 359.9 227.1 200.5 12.0 56.4 35.1 8.4 0.0 66.9
2025-04-01 747.0 62.4 29.6 -130.1 355.6 225.5 199.2 11.8 55.5 34.4 8.3 0.0 67.4
2025-01-01 743.6 62.7 28.7 -129.8 352.9 223.8 197.5 11.8 55.0 34.2 7.9 0.0 68.6
2024-10-01 737.9 62.0 28.3 -129.8 349.4 221.2 195.0 11.8 54.2 33.8 7.6 -0.1 68.7
2024-07-01 734.1 60.8 27.9 -128.5 343.9 223.2 197.0 11.7 53.1 33.2 7.2 -0.1 69.3
2024-04-01 725.9 59.6 27.7 -128.6 341.1 218.8 192.7 11.6 52.8 33.1 7.1 0.0 67.0