Last observation: 2025 (N = 169886)
First observation: 1983 (N = 13194)
Last data update: 14 aoû 2026, 21:29. Last compile: 18 aoû 2026, 01:46
Data - Eurostat
Last observation: 2025 (N = 169886)
First observation: 1983 (N = 13194)
Last data update: 14 aoû 2026, 21:29. Last compile: 18 aoû 2026, 01:46
lfsa_ewhuis |>
filter(geo %in% c("FR", "DE", "ES", "IT"),
isco08 == "TOTAL",
wstatus == "EMP",
worktime == "FT",
age == "Y15-64",
sex == "T") |>
year_to_date() |>
left_join(colors, by = c("Geo" = "country")) |>
ggplot() + geom_line(aes(x = date, y = values, color = color)) +
theme_minimal() + scale_color_identity() + add_flags +
scale_x_date(breaks = as.Date(paste0(seq(1983, 2100, 5), "-01-01")),
labels = date_format("%Y")) +
xlab("") + ylab("Usual weekly hours, full-time employees")
lfsa_ewhuis |>
filter(geo == "FR",
isco08 == "TOTAL",
wstatus == "EMP",
worktime == "FT",
age == "Y15-64",
sex %in% c("M", "F")) |>
year_to_date() |>
ggplot() + geom_line(aes(x = date, y = values, color = Sex)) +
theme_minimal() +
theme(legend.position = c(0.15, 0.15),
legend.title = element_blank()) +
scale_x_date(breaks = as.Date(paste0(seq(1983, 2100, 5), "-01-01")),
labels = date_format("%Y")) +
xlab("") + ylab("Usual weekly hours, full-time employees")
lfsa_ewhuis |>
filter(geo == "FR",
isco08 == "TOTAL",
wstatus == "EMP",
worktime %in% c("FT", "PT"),
age == "Y15-64",
sex == "T") |>
year_to_date() |>
ggplot() + geom_line(aes(x = date, y = values, color = Worktime)) +
theme_minimal() +
theme(legend.position = c(0.75, 0.5),
legend.title = element_blank()) +
scale_x_date(breaks = as.Date(paste0(seq(1983, 2100, 5), "-01-01")),
labels = date_format("%Y")) +
xlab("") + ylab("Usual weekly hours")