Last observation: 2006 (N = 12)
First observation: 1973 (N = 10)
Last data update: 20 sept. 2026, 21:49
Last compile: 20 sept. 2026, 21:54
`la-depense-pour-lemploi-de-1973-2006` |>
filter(categorie %in% c("Indemni sation du chômage", "Incitation au retrait d'activité",
"Formation profes sionnelle", "Incitation à l'activité")) |>
ggplot(aes(x = date, y = value, color = categorie)) +
geom_line() +
theme_minimal() + xlab("") + ylab("millions d'euros") +
scale_x_date(date_breaks = "2 years", labels = date_format("%Y")) +
theme(legend.position = "bottom", legend.title = element_blank()) +
guides(color = guide_legend(nrow = 2))