Last observation: 2025 (N = 9)
First observation: 2019 (N = 9)
Last data update: 20 sept. 2026, 21:12
Last compile: 20 sept. 2026, 21:20
`les-heures-supplementaires` |>
filter(variable == "Proportion de salariés concernés (%)") |>
ggplot(aes(x = date, y = value / 100, color = categorie)) +
geom_line() + geom_point(size = 0.8) +
theme_minimal() + xlab("") + ylab("") +
scale_x_date(date_breaks = "1 year", labels = date_format("%Y")) +
scale_y_continuous(labels = percent_format(accuracy = 1)) +
theme(legend.position = "bottom", legend.title = element_blank())
`les-heures-supplementaires` |>
filter(variable == "Nombre moyen d'heures sup. dans l'année, par salarié") |>
ggplot(aes(x = date, y = value, color = categorie)) +
geom_line() + geom_point(size = 0.8) +
theme_minimal() + xlab("") + ylab("heures") +
scale_x_date(date_breaks = "1 year", labels = date_format("%Y")) +
theme(legend.position = "bottom", legend.title = element_blank())