Last observation: déc. 2025 (N = 1)
First observation: janv. 2016 (N = 2)
Last data update: 20 sept. 2026, 21:38
Last compile: 20 sept. 2026, 21:40
`series-longues-le-compte-personnel-de-formation` |>
filter(metric == "Nombre d'entrées en formation CPF (mensuel)") |>
ggplot(aes(x = date, y = value / 1000)) +
geom_line(color = "#2A5DB0") +
theme_minimal() + xlab("") + ylab("milliers d'entrées en formation") +
scale_x_date(date_breaks = "1 year", labels = date_format("%Y")) +
theme(axis.text.x = element_text(angle = 45, vjust = 1, hjust = 1))
`series-longues-le-compte-personnel-de-formation` |>
filter(is.na(mois)) |>
ggplot(aes(x = date, y = value / 1000, color = metric)) +
geom_line() + geom_point(size = 1) +
theme_minimal() + xlab("") + ylab("milliers d'utilisateurs") +
scale_x_date(date_breaks = "1 year", labels = date_format("%Y")) +
theme(legend.position = "bottom", legend.title = element_blank()) +
guides(color = guide_legend(nrow = 2))