6.214 - Volume total d’heures travaillées des salariés par branche (38 postes) - T_6214

Données - INSEE

Structure

Heures travaillées (salariés) par grande branche

Volume total d’heures travaillées par les salariés, par branche.

Code
`T_6214` |>
  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 (Millions d’heures)

Code
`T_6214` |>
  filter(sheet == sh[1], grepl("^A5_", code)) |>
  ggplot() + theme_minimal() + xlab("") + ylab("Millions d'heures") +
  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_6214` |>
  filter(sheet == sh[1], year == last_y, grepl("^A38_", code)) |>
  mutate(label = reorder(str_trunc(label, 55), value)) |>
  ggplot() + theme_minimal() + xlab("") + ylab("Millions d'heures") +
  geom_col(aes(x = label, y = value), fill = "#2b6cb0") + coord_flip()

Table (2025)

Code
`T_6214` |>
  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 516.8 1.4
Industrie manufacturière, industries extractives et autres A5_BE 4417.3 11.7
Construction A5_FZ 2450.3 6.5
Services principalement marchands A5_GU 20248.3 53.6
Services principalement non marchands (*) A5_OQ 10114.2 26.8