LFS by sex and age - LFS_D

Data - OECD

Info

Last observation: A: 2022 (N = 16260)

First observation: A: 1960 (N = 552)

Last data update: 02 aoû 2026, 08:59. Last compile: 18 aoû 2026, 00:39

Structure

obsTime

Code
LFS_D |>
  group_by(obsTime) |>
  summarise(Nobs = n()) |>
  arrange(desc(obsTime)) |>
  print_table_conditional()

Employment in Millions

Code
LFS_D |>
  filter(SERIES == "E", 
         AGE == "1564",
         SEX == "MW",
         COUNTRY %in% c("ITA", "DEU", "GRC", "ESP", "PRT", "FRA")) |>
  year_to_date() |>
  filter(date >= as.Date("2000-01-01")) |>
  left_join(LFS_D_var$COUNTRY, by = "COUNTRY") |>
  arrange(date) |>
  ggplot() + geom_line(aes(x = date, y = obsValue/1000, color = Country, linetype = Country)) + 
  scale_color_manual(values = viridis(7)[1:6]) +
  theme_minimal() + xlab("") + ylab("") +
  scale_x_date(breaks = seq(1960, 2100, 1) |> paste0("-01-01") |> as.Date(),
               labels = date_format("%Y")) +
  theme(legend.position = c(0.3, 0.9),
        legend.title = element_blank(),
        legend.direction = "horizontal") +
  scale_y_continuous(breaks = seq(0, 200, 5),
                     labels = scales::dollar_format(prefix = "", suffix = "M"),
                     limits = c(0, 60))