Last observation: 2024 (N = 27)
First observation: 2006 (N = 27)
Last data update: 20 sept. 2026, 21:13
Last compile: 20 sept. 2026, 21:20
`participation-interessement-et-epargne-salariale` |>
filter(dispositif %in% c("Participation", "Intéressement"),
grepl("^Montant total brut distribué", indicateur)) |>
ggplot(aes(x = date, y = value, color = dispositif)) +
geom_line() + geom_point(size = 0.8) +
theme_minimal() + xlab("") + ylab("millions d'euros") +
scale_x_date(date_breaks = "2 years", labels = date_format("%Y")) +
scale_y_continuous(labels = label_number(big.mark = " ")) +
theme(legend.position = "bottom", legend.title = element_blank())
`participation-interessement-et-epargne-salariale` |>
filter(dispositif %in% c("Participation", "Intéressement"),
grepl("^Nombre de bénéficiaires", indicateur)) |>
ggplot(aes(x = date, y = value, color = dispositif)) +
geom_line() + geom_point(size = 0.8) +
theme_minimal() + xlab("") + ylab("milliers de bénéficiaires") +
scale_x_date(date_breaks = "2 years", labels = date_format("%Y")) +
theme(legend.position = "bottom", legend.title = element_blank())