6.461-462 - Capital fixe par actif et par branche - T_6461_6462

Données - INSEE

Structure

Capital fixe par grande branche

Feuille T_6461 (brut) / T_6462 (net). Répartition du capital fixe par branche : les services (immobilier, transport, télécoms, services aux entreprises) en concentrent l’essentiel.

Code
`T_6461_6462` |>
  filter(sheet == sh[1], grepl("^A5_", code)) |>
  group_by(year) |> mutate(part = value / sum(value)) |> ungroup() |>
  arrange(desc(code)) |> mutate(label = factor(label, levels = unique(label))) |>
  ggplot() + theme_minimal() + xlab("") + ylab("Part du total") +
  geom_area(aes(x = year, y = part, fill = label)) +
  scale_x_continuous(breaks = seq(1950, 2030, 10)) +
  scale_y_continuous(labels = percent_format(accuracy = 1)) +
  scale_fill_manual(values = viridis(5)) +
  theme(legend.title = element_blank(), legend.position = "bottom") +
  guides(fill = guide_legend(nrow = 3))

En niveau (Mds €)

Code
`T_6461_6462` |>
  filter(sheet == sh[1], grepl("^A5_", code)) |>
  ggplot() + theme_minimal() + xlab("") + ylab("Mds €") +
  geom_line(aes(x = year, y = value, color = label)) +
  scale_x_continuous(breaks = seq(1950, 2030, 10)) +
  theme(legend.title = element_blank(), legend.position = "bottom") +
  guides(color = guide_legend(nrow = 3))

Par branche détaillée (2025)

Code
`T_6461_6462` |>
  filter(sheet == sh[1], year == last_y, grepl("^A38_", code)) |>
  mutate(label = reorder(str_trunc(label, 55), value)) |>
  ggplot() + theme_minimal() + xlab("") + ylab("Mds €") +
  geom_col(aes(x = label, y = value), fill = "#2b6cb0") + coord_flip()

Table (2025)

Code
`T_6461_6462` |>
  filter(sheet == sh[1], year == last_y, grepl("^A5_", code)) |>
  transmute(Branche = label, Code = code, Valeur = round(value, 1),
            `% du total` = round(100 * value / sum(value), 1)) |>
  print_table_conditional()
Branche Code Valeur % du total
Agriculture, sylviculture et pêche A5_AZ 14.6 2.6
Industrie manufacturière, industries extractives et autres A5_BE 91.3 16.5
Construction A5_FZ 11.4 2.1
Services principalement marchands A5_GU 352.0 63.5
Services principalement non marchands (*) A5_OQ 84.7 15.3