FBCF des entreprises non financières par branche - Valeurs aux prix courants - t_fbcfenf_val

Données - INSEE

Comptes trimestriels : FBCF des entreprises non financières, par branche, à prix courants.

Structure

Principales branches

Code
`t_fbcfenf_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_fbcfenf_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_fbcfenf_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 32.7 11.3 9.6 11.8 24.4 21.7 0.4 13.0 0.5
2026-01-01 0.3 32.2 11.0 9.2 11.9 24.1 21.6 0.4 13.1 0.5
2025-10-01 0.3 32.1 10.8 9.4 11.9 24.5 21.1 0.4 13.2 0.5
2025-07-01 0.3 32.5 11.0 9.6 11.9 24.2 21.0 0.4 13.1 0.5
2025-04-01 0.3 32.2 10.8 9.4 11.9 24.2 20.5 0.4 12.9 0.5
2025-01-01 0.3 31.9 10.7 9.5 11.6 24.4 20.4 0.4 12.8 0.5
2024-10-01 0.3 31.2 10.6 9.2 11.5 24.6 20.3 0.4 12.5 0.5