Last observation: 2026T1 (N = 123)
First observation: 2018T1 (N = 122)
Last data update: 20 sept. 2026, 19:20
Last compile: 23 sept. 2026, 21:36
`la-duree-collective-hebdomadaire-de-travail` |>
filter(secteur == "ENS") |>
mutate(date = zoo::as.yearqtr(TIME_PERIOD, format = "%YT%q")) |>
ggplot(aes(x = date, y = value)) +
geom_line(color = "#2A5DB0") +
geom_point(color = "#2A5DB0", size = 0.8) +
theme_minimal() + xlab("") + ylab("heures") +
zoo::scale_x_yearqtr(n = 10) +
ggtitle("Durée collective hebdomadaire du travail - ensemble des secteurs non agricoles")
`la-duree-collective-hebdomadaire-de-travail` |>
filter(secteur %in% c("DE", "FZ", "GZ", "OQ")) |>
mutate(date = zoo::as.yearqtr(TIME_PERIOD, format = "%YT%q")) |>
ggplot(aes(x = date, y = value, color = Secteur)) +
geom_line() +
theme_minimal() + xlab("") + ylab("heures") +
theme(legend.position = "bottom", legend.title = element_blank()) +
zoo::scale_x_yearqtr(n = 10)