Les inscrits à France Travail — l’approche en droits constatés - les-inscrits-france-travail-lapproche-en-droits-constates

Données - Dares

Catégories A, B, C

Code
`les-inscrits-france-travail-lapproche-en-droits-constates` |>
  filter(categorie %in% c("Catégorie A", "Catégorie B", "Catégorie C")) |>
  ggplot(aes(x = date, y = value / 1e6, color = categorie)) +
  geom_line() +
  theme_minimal() + xlab("") + ylab("millions d'inscrits") +
  scale_x_date(date_breaks = "1 year", labels = date_format("%Y")) +
  theme(legend.position = "bottom", legend.title = element_blank())