Involuntary part time workers - INVPT_D

Data - OECD

Last observation: 2022 (N = 1441)

First observation: 1976 (N = 15)

Last data update: 02 août 2026, 08:59

Last compile: 02 sept. 2026, 23:28

Structure

obsTime

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

Share of involuntary part-timers (% of part-time employment)

Table

Code
INVPT_D |>
  filter(SEX == "MW",
         EMPSTAT == "TE",
         AGE == "900000") |>
  left_join(INVPT_D_var$COUNTRY, by = "COUNTRY") |>
  group_by(COUNTRY, Country) |>
  summarise(Nobs = n(),
            obsTime = last(obsTime),
            obsValue = last(obsValue)) |>
  arrange(-obsValue) |>
  mutate(Flag = gsub(" ", "-", str_to_lower(Country)),
         Flag = paste0('<img src="../../icon/flag/vsmall/', Flag, '.png" alt="Flag">')) |>
  select(Flag, everything()) %>%
  {if (is_html_output()) datatable(., filter = 'top', rownames = F, escape = F) else .}