Labor Statistics - LS

Data - IMF

Info

Last observation: Monthly: 2026-M01 (N = 44) · Quarterly: 2025-Q4 (N = 353) · Annual: 2025 (N = 378)

Last update of data: 13 avr 2026, 02:06. Last compile: 15 avr 2026, 23:30

Structure

Unemployment Rates

United States, France, Germany

Code
LS %>%
  filter(INDICATOR == "U",
         COUNTRY %in% c("USA", "FRA", "DEU"),
         FREQUENCY == "M",
         TYPE_OF_TRANSFORMATION == "PT") %>%
  mutate(TIME_PERIOD = ym(TIME_PERIOD)) %>%
  ggplot + geom_line(aes(x = TIME_PERIOD, y = OBS_VALUE, color = Country))