Turnover and volume of sales in wholesale and retail trade - monthly data - sts_trtu_m
Data - Eurostat
Info
Last observation: Annual: 2026M06 (N = 4,410)
First observation: Annual: 1991M01 (N = 345)
Last data update: 11 aoû 2026, 21:13. Last compile: 12 aoû 2026, 03:49
Structure
Retail Trade Volume (Excl. Motor Vehicles, SA)
France, Germany, Spain, Italy
Code
sts_trtu_m |>
filter(geo %in% c("FR", "DE", "ES", "IT"),
indic_bt == "VOL_SLS",
nace_r2 == "G47",
s_adj == "SCA",
unit == "I21") |>
month_to_date() |>
left_join(colors, by = c("Geo" = "country")) |>
ggplot() + geom_line(aes(x = date, y = values, color = color)) +
theme_minimal() + scale_color_identity() + add_flags +
scale_x_date(breaks = as.Date(paste0(seq(1994, 2100, 5), "-01-01")),
labels = date_format("%Y")) +
xlab("") + ylab("Volume of retail sales (Index 2021 = 100)")
France: Food vs. Non-Food
Code
sts_trtu_m |>
filter(geo == "FR",
indic_bt == "VOL_SLS",
nace_r2 %in% c("G47_FOOD", "G47_NFOOD"),
s_adj == "SCA",
unit == "I21") |>
month_to_date() |>
ggplot() + geom_line(aes(x = date, y = values, color = Nace_r2)) +
theme_minimal() +
scale_x_date(breaks = as.Date(paste0(seq(1994, 2100, 5), "-01-01")),
labels = date_format("%Y")) +
theme(legend.position = c(0.3, 0.85),
legend.title = element_blank()) +
xlab("") + ylab("Volume of retail sales (Index 2021 = 100)")