Participation, intéressement et épargne salariale - participation-interessement-et-epargne-salariale

Données - Dares

Structure

Montant total brut distribué, par dispositif

Code
`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())

Nombre de bénéficiaires, par dispositif

Code
`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())