6.211 - Emploi intérieur salarié par branche en nombre d’équivalents temps plein (38 postes) - T_6211

Données - INSEE

Structure

Emploi salarié (ETP) par grande branche

Emploi salarié par branche en équivalents temps plein.

Code
`T_6211` |>
  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 (Milliers d’ETP)

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

Table (2025)

Code
`T_6211` |>
  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 353.6 1.4
Industrie manufacturière, industries extractives et autres A5_BE 2850.6 11.2
Construction A5_FZ 1556.7 6.1
Services principalement marchands A5_GU 12989.9 51.1
Services principalement non marchands (*) A5_OQ 7645.7 30.1