TCRED - Emploi au 31 décembre (1989-2020) - TCRED-EMPLOI-31-DECEMBRE

Données - INSEE

Info

Last observation: Annuelle: 2020 (N = 2,070)

First observation: Annuelle: 1989 (N = 2,020)

Number of observations: 65 140

Last data update: 15 aoû 2026, 02:45. Last compile: 15 aoû 2026, 05:09

Structure

LAST_DOWNLOAD

LAST_DOWNLOAD
2026-08-15

LAST_COMPILE

LAST_COMPILE
2026-08-15

Champ

Sectoriel par département (2011)

Paris, Seine-Saint-Denis, Hauts-de-Seine

Code
`TCRED-EMPLOI-31-DECEMBRE` |>
  filter(NAF2_RGP %in% c("BE", "TOT"),
         REF_AREA %in% c("D92", "D93", "D75"),
         CAT_POP_ACT == "TOT") |>
  year_to_date() |>
  select(date, REF_AREA, NAF2_RGP, OBS_VALUE) |>
  spread(NAF2_RGP, OBS_VALUE) |>
  ggplot() + geom_line(aes(x = date, y = BE/TOT, color = REF_AREA, linetype = REF_AREA)) +
  xlab("") + ylab("Part emploi industriel (% BE-FZ-GU)") +  theme_minimal() +
  scale_x_date(breaks = seq(1960, 2100, 1) |> paste0("-01-01") |> as.Date(),
               labels = date_format("%Y")) +
  scale_y_continuous(breaks = 0.01*seq(0, 120, 1),
                labels = percent_format(accuracy = 1)) +
  scale_color_manual(values = viridis(5)[1:4]) +
  theme(legend.position = c(0.8, 0.9),
        legend.title = element_blank())