Last observation: 2024 (N = 7)
First observation: 2012 (N = 7)
Last data update: 20 sept. 2026, 21:13
Last compile: 20 sept. 2026, 21:20
`la-negociation-collective-dentreprise` |>
filter(variable %in% c("Taux de négociation des entreprises*", "Taux d'aboutissement à un accord au moins**")) |>
ggplot(aes(x = date, y = value / 100, color = variable)) +
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()) +
guides(color = guide_legend(nrow = 2))