Last data update: 20 sept. 2026, 19:41
Last compile: 20 sept. 2026, 19:52
`defm-mens-france` |>
ggplot(aes(x = date, y = nombre_de_demandeurs_d_emploi / 1e6, color = serie)) +
geom_line() +
theme_minimal() + xlab("") + ylab("millions d'inscrits (catégories A, B, C)") +
scale_x_date(date_breaks = "2 years", labels = date_format("%Y")) +
theme(legend.position = "bottom", legend.title = element_blank(),
axis.text.x = element_text(angle = 45, vjust = 1, hjust = 1))
`demandeurs-emploi-inscrits-france-travail-donnees-mensuelles` |>
filter(champ == "France métropolitaine", categorie == "A", serie == "Brutes",
sexe != "Total", tranche_d_age == "Total",
tranche_d_heures_travaillees == "Total", anciennete == "Total",
formation == "Total", formation_ancienne_mesure == "Total",
metier_recherche == "Total", indemnisabilite == "Total",
qualification == "Total") |>
ggplot(aes(x = date, y = nombre_de_demandeurs_d_emploi / 1e6, color = sexe)) +
geom_line() +
theme_minimal() + xlab("") + ylab("millions d'inscrits (catégorie A)") +
scale_x_date(date_breaks = "2 years", labels = date_format("%Y")) +
theme(legend.position = "bottom", legend.title = element_blank(),
axis.text.x = element_text(angle = 45, vjust = 1, hjust = 1))