FBCF des entreprises non financières par branche - Volume (CVS-CJO) - t_fbcfenf_vol

Données - INSEE

Comptes trimestriels : FBCF des entreprises non financières, par branche, en volume.

Structure

Principales branches

Code
`t_fbcfenf_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_fbcfenf_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_fbcfenf_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 27.4 10.0 7.9 9.5 20.3 19.9 0.3 11.5 0.5
2026-01-01 0.2 27.2 9.9 7.6 9.7 20.2 19.9 0.3 11.7 0.5
2025-10-01 0.2 27.2 9.7 7.8 9.8 20.6 19.5 0.4 12.0 0.5
2025-07-01 0.2 27.7 9.9 8.0 9.9 20.5 19.4 0.3 12.0 0.5
2025-04-01 0.2 27.5 9.7 7.8 9.9 20.4 19.0 0.3 11.8 0.5
2025-01-01 0.2 27.2 9.6 7.9 9.7 20.6 18.9 0.4 11.7 0.5
2024-10-01 0.2 26.9 9.4 7.8 9.6 21.0 18.9 0.3 11.5 0.5