Last observation: 2022 (N = 178400)
First observation: 2002 (N = 1762240)
Last data update: 14 aoû 2026, 23:34. Last compile: 18 aoû 2026, 00:17
Data - Eurostat
Last observation: 2022 (N = 178400)
First observation: 2002 (N = 1762240)
Last data update: 14 aoû 2026, 23:34. Last compile: 18 aoû 2026, 00:17
earn_ses_monthly |>
filter(geo %in% c("FR", "DE", "IT", "ES"),
nace_r2 == "B-N",
isco08 == "TOTAL",
worktime == "TOTAL",
age == "TOTAL",
sex == "T",
indic_se == "MEAN_E_EUR") |>
year_to_date() |>
left_join(colors, by = c("Geo" = "country")) |>
ggplot() + geom_line(aes(x = date, y = values, color = color)) +
geom_point(aes(x = date, y = values, color = color)) +
theme_minimal() + scale_color_identity() + add_flags +
scale_x_date(breaks = as.Date(paste0(seq(2000, 2100, 4), "-01-01")),
labels = date_format("%Y")) +
xlab("") + ylab("Mean monthly earnings (€)")
earn_ses_monthly |>
filter(geo == "FR",
nace_r2 == "B-N",
isco08 == "TOTAL",
worktime == "TOTAL",
age == "TOTAL",
sex %in% c("M", "F"),
indic_se == "MEAN_E_EUR") |>
year_to_date() |>
ggplot() + geom_line(aes(x = date, y = values, color = Sex)) +
geom_point(aes(x = date, y = values, color = Sex)) +
theme_minimal() +
scale_x_date(breaks = as.Date(paste0(seq(2000, 2100, 4), "-01-01")),
labels = date_format("%Y")) +
theme(legend.position = c(0.15, 0.85),
legend.title = element_blank()) +
xlab("") + ylab("Mean monthly earnings (€)")
include_graphics3b("bib/eurostat/earn_ses_monthly_ex1.png")
earn_ses_monthly |>
filter(nace_r2 == "B-N",
isco08 == "TOTAL",
worktime == "TOTAL",
age == "TOTAL",
sex == "T",
indic_se == "MEAN_E_EUR",
time %in% c("2002", "2010", "2018")) |>
select(geo, Geo, time, values) |>
na.omit() |>
mutate(Geo = ifelse(geo == "DE", "Germany", Geo),
values = round(values)) |>
spread(time, values) %>%
mutate_at(vars(-1, -2), funs(ifelse(is.na(.), "", paste0(., " €")))) %>%
{if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}earn_ses_monthly |>
filter(nace_r2 == "B-N",
isco08 == "TOTAL",
worktime == "TOTAL",
age == "TOTAL",
sex == "T",
indic_se == "MEAN_E_EUR",
time %in% c("2018")) |>
select(geo, Geo, values) |>
right_join(europe_NUTS0, by = "geo") |>
filter(long >= -15, lat >= 33) |>
ggplot(aes(x = long, y = lat, group = group, fill = values)) +
geom_polygon() + coord_map() +
scale_fill_viridis_c(na.value = "white",
labels = scales::dollar_format(accuracy = 1, prefix = "", suffix = "€"),
breaks = seq(0, 20000, 1000),
values = c(0, 0.1, 0.2, 0.3, 0.4, 0.5, 1)) +
theme_void() + theme(legend.position = c(0.25, 0.85)) +
labs(fill = "Avg Wage")
earn_ses_monthly |>
filter(nace_r2 == "B-N",
isco08 == "TOTAL",
worktime == "TOTAL",
age == "TOTAL",
sex == "T",
indic_se == "MEAN_E_EUR",
time %in% c("2014")) |>
select(geo, Geo, values) |>
right_join(europe_NUTS0, by = "geo") |>
filter(long >= -15, lat >= 33) |>
ggplot(aes(x = long, y = lat, group = group, fill = values)) +
geom_polygon() + coord_map() +
scale_fill_viridis_c(na.value = "white",
labels = scales::dollar_format(accuracy = 1, prefix = "", suffix = "€"),
breaks = seq(0, 20000, 1000),
values = c(0, 0.1, 0.2, 0.3, 0.4, 0.5, 1)) +
theme_void() + theme(legend.position = c(0.25, 0.85)) +
labs(fill = "Avg Wage")