6.208d - Emploi intérieur total par branche en personnes (88 postes) - T_6208d

Données - INSEE

Structure

Emploi (milliers) par branche (2024)

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

Principales branches (% du total)

Code
`T_6208d` |>
  filter(sheet == sh[1], code %in% top8) |>
  left_join(filter(`T_6208d`, sheet == sh[1], code == "_T") |>
              select(year, tot = value), by = "year") |>
  ggplot() + theme_minimal() + xlab("") + ylab("% du total") +
  geom_line(aes(x = year, y = value / tot, color = str_trunc(label, 45))) +
  scale_x_continuous(breaks = seq(2000, 2030, 5)) +
  scale_y_continuous(labels = percent_format(accuracy = 1)) +
  theme(legend.title = element_blank(), legend.position = "bottom") +
  guides(color = guide_legend(nrow = 4))

Table (2024)

Code
`T_6208d` |>
  filter(sheet == sh[1], year == last_y, grepl("^A38_", code)) |>
  transmute(Branche = label, Code = code, Valeur = round(value, 1)) |>
  arrange(desc(Valeur)) |>
  print_table_conditional()