Incidence of involuntary part time workers - INVPT_I
Data - OECD
Last observation: 2022 (N = 6701)
First observation: 1976 (N = 142)
Last data update: 02 août 2026, 08:59
Last compile: 06 sept. 2026, 14:52
Structure
obsTime
Code
INVPT_I |>
group_by(obsTime) |>
summarise(Nobs = n()) |>
arrange(desc(obsTime)) |>
print_table_conditional()Euro-area slack
Involuntary part-time work, euro-area countries
Code
INVPT_I |>
filter(COUNTRY %in% c("FRA", "DEU", "ITA", "ESP", "GRC"),
SEX == "MW", EMPSTAT == "TE", AGE == "900000",
SERIES == "SHINV_EMP") |>
year_to_date() |>
left_join(INVPT_I_var$COUNTRY, by = "COUNTRY") |>
rename(Location = Country) |>
filter(!is.na(obsValue)) |>
mutate(obsValue = obsValue / 100) |>
add_flag_color("Location") |>
ggplot() + theme_minimal() + xlab("") +
ylab("Involuntary part-time work (% of total employment)") +
geom_line(aes(x = date, y = obsValue, color = color)) +
scale_color_identity() + add_5flags +
scale_x_date(breaks = seq(1920, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_continuous(breaks = 0.01 * seq(0, 100, 1),
labels = scales::percent_format(accuracy = 1))






