Turnover in services - monthly data - sts_setu_m

Data - Eurostat

Info

Last observation: Annual: 2026M06 (N = 819)

First observation: Annual: 1994M01 (N = 57)

Last data update: 11 aoû 2026, 21:24. Last compile: 12 aoû 2026, 03:49

Structure

France, Germany, Italy, Spain, Netherlands

Net Turnover in Services (Index, 2021=100)

Code
sts_setu_m |>
  filter(geo %in% c("FR", "DE", "IT", "ES", "NL"),
         nace_r2 == "H-N_X_K",
         indic_bt == "NETTUR",
         s_adj == "SCA",
         unit == "I21") |>
  month_to_date() |>

  left_join(colors, by = c("Geo" = "country")) |>
  mutate(color = ifelse(geo == "NL", color2, color)) |>
  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(1996, 2100, 2), "-01-01")),
               labels = date_format("%Y")) +
  xlab("") + ylab("Net turnover in services (Index, 2021=100)")

France: Turnover by Service Sector

Code
sts_setu_m |>
  filter(geo == "FR",
         nace_r2 %in% c("H", "I", "J", "L", "N"),
         indic_bt == "NETTUR",
         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(1996, 2100, 2), "-01-01")),
               labels = date_format("%Y")) +
  theme(legend.position = "bottom",
        legend.title = element_blank()) +
  guides(color = guide_legend(nrow = 3)) +
  xlab("") + ylab("Net turnover (Index, 2021=100)")