Real Minimum Wages - RMW
Data - OECD
Last observation: 2022 (N = 140)
First observation: 1960 (N = 20)
Last data update: 02 août 2026, 09:07
Last compile: 03 sept. 2026, 00:04
Structure
obsTime
Code
RMW |>
group_by(obsTime) |>
summarise(Nobs = n()) |>
arrange(desc(obsTime)) |>
print_table_conditional()2020
Code
RMW |>
left_join(RMW_var$COUNTRY, by = "COUNTRY") |>
left_join(RMW_var$SERIES, by = "SERIES") |>
left_join(RMW_var$PERIOD, by = "PERIOD") |>
filter(obsTime == "2020") %>%
select_if(~ n_distinct(.) > 1) |>
transmute(COUNTRY, Country,
variable = paste0(Series, " - ", Period), obsValue) |>
spread(variable, obsValue) |>
mutate(Flag = gsub(" ", "-", str_to_lower(gsub(" ", "-", 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 .}France, United States, Germany, Italy
PPP
Code
RMW |>
filter(SERIES == "PPP",
PERIOD == "H",
COUNTRY %in% c("FRA", "USA", "DEU", "ITA", "ESP")) |>
left_join(RMW_var$COUNTRY, by = "COUNTRY") |>
year_to_date() |>
add_flag_color("Country") |>
rename(Location = Country) |>
ggplot() + geom_line(aes(x = date, y = obsValue, color = color)) +
scale_color_identity() + add_4flags + theme_minimal() +
scale_x_date(breaks = seq(1920, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_log10(breaks = seq(1, 500, 1),
labels = scales::dollar_format(accuracy = 1)) +
ylab("PPP") + xlab("")
EXR
Code
RMW |>
filter(SERIES == "EXR",
PERIOD == "H",
COUNTRY %in% c("FRA", "USA", "DEU", "ITA", "ESP")) |>
left_join(RMW_var$COUNTRY, by = "COUNTRY") |>
year_to_date() |>
add_flag_color("Country") |>
rename(Location = Country) |>
ggplot() + geom_line(aes(x = date, y = obsValue, color = color)) +
scale_color_identity() + add_4flags + theme_minimal() +
scale_x_date(breaks = seq(1920, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_log10(breaks = seq(1, 500, 1),
labels = scales::dollar_format(accuracy = 1)) +
ylab("EXR") + xlab("")
Australia, Australia, Mexico, France
PPP
Code
RMW |>
filter(SERIES == "PPP",
PERIOD == "H",
COUNTRY %in% c("AUS", "MEX", "USA", "FRA")) |>
left_join(RMW_var$COUNTRY, by = "COUNTRY") |>
year_to_date() |>
add_flag_color("Country") |>
rename(Location = Country) |>
ggplot() + geom_line(aes(x = date, y = obsValue, color = color)) +
scale_color_identity() + add_4flags + theme_minimal() +
scale_x_date(breaks = seq(1920, 2100, 5) |> paste0("-01-01") |> as.Date(),
labels = date_format("%Y")) +
scale_y_log10(breaks = seq(1, 500, 1),
labels = scales::dollar_format(accuracy = 1)) +
ylab("PPP") + xlab("")