FBCF des sociétés et entreprises individuelles non financières par branche - Valeurs aux prix courants - t_fbcfsi_val

Données - INSEE

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

Structure

Principales branches

Code
`t_fbcfsi_val` |>
  filter(variable %in% big) |>
  ggplot() + theme_minimal() + xlab("") + ylab("FBCF (Mds €)") +
  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_val` |>
  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_val` |>
  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.3 38.7 13.1 12.8 12.8 72.2 26.4 2.1 28.1 0.7
2026-01-01 0.3 38.2 12.8 12.4 13.0 71.7 26.2 2.1 28.1 0.7
2025-10-01 0.3 38.1 12.6 12.6 12.9 72.7 25.7 2.2 28.2 0.7
2025-07-01 0.3 38.3 12.6 12.7 13.0 72.2 25.6 2.1 28.0 0.7
2025-04-01 0.3 38.0 12.6 12.4 13.0 71.9 25.0 2.1 27.7 0.7
2025-01-01 0.3 37.5 12.5 12.4 12.7 72.0 24.9 2.1 27.3 0.7
2024-10-01 0.3 36.8 12.4 11.9 12.5 72.1 24.9 2.0 26.7 0.7