FBCF des sociétés et entreprises individuelles non financières par branche - Volume (CVS-CJO) - t_fbcfsi_vol

Données - INSEE

Comptes trimestriels : FBCF des sociétés non financières et entrepreneurs individuels, par branche, en volume.

Structure

Principales branches

Code
`t_fbcfsi_vol` |>
  filter(variable %in% big) |>
  ggplot() + theme_minimal() + xlab("") + ylab("FBCF (volume)") +
  geom_line(aes(x = date, y = value, color = a17_label(variable))) +
  scale_x_date(date_breaks = "10 years", date_labels = "%Y") +
  theme(legend.title = element_blank(), legend.position = "bottom") +
  guides(color = guide_legend(nrow = 2))

Industrie manufacturière — glissement annuel

Code
`t_fbcfsi_vol` |>
  filter(variable == "C") |>
  arrange(date) |> mutate(g = value / lag(value, 4) - 1) |>
  filter(date >= as.Date("1980-01-01")) |>
  ggplot() + theme_minimal() + xlab("") + ylab("Glissement annuel") +
  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_fbcfsi_vol` |>
  filter(grepl("^[A-Z][A-Z0-9]?$", variable), date >= last_d %m-% months(18)) |>
  mutate(value = round(value, 1)) |>
  tidyr::pivot_wider(names_from = variable, values_from = value) |>
  arrange(desc(date)) |>
  print_table_conditional()
date AZ C C3 C4 C5 FZ JZ LZ MN RU
2026-04-01 0.2 32.7 11.6 10.7 10.4 59.0 24.2 2.0 24.7 0.7
2026-01-01 0.2 32.6 11.5 10.5 10.6 59.2 24.2 2.0 25.0 0.7
2025-10-01 0.2 32.6 11.4 10.6 10.7 60.4 23.7 2.1 25.2 0.7
2025-07-01 0.2 33.0 11.5 10.7 10.8 60.2 23.6 2.0 25.1 0.7
2025-04-01 0.2 32.7 11.4 10.5 10.8 60.1 23.2 2.0 24.8 0.7
2025-01-01 0.2 32.2 11.2 10.4 10.6 60.2 23.1 2.0 24.7 0.7
2024-10-01 0.2 31.9 11.2 10.2 10.6 60.7 23.0 1.9 24.2 0.7