Main national accounts tax aggregates - gov_10a_taxag

Data - Eurostat

Info

Last observation: Annual: 2025 (N = 23,044)

First observation: Annual: 1995 (N = 82,929)

Last data update: 11 aoû 2026, 22:28. Last compile: 12 aoû 2026, 00:02

Structure

Total Tax Receipts (% of GDP)

France, Germany, Italy, Spain

Code
gov_10a_taxag |>
  filter(sector == "S13",
         unit == "PC_GDP",
         na_item == "D2_D5_D91",
         geo %in% c("FR", "DE", "IT", "ES")) |>
  year_to_date() |>
  left_join(colors, by = c("Geo" = "country")) |>
  mutate(values = values/100) |>
  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(1960, 2100, 5), "-01-01")),
               labels = date_format("%Y")) +
  xlab("") + ylab("Total tax receipts (% of GDP)") +
  scale_y_continuous(labels = scales::percent_format(accuracy = 1))

Composition, France

Code
gov_10a_taxag |>
  filter(sector == "S13",
         unit == "PC_GDP",
         na_item %in% c("D2", "D5", "D61"),
         geo == "FR") |>
  year_to_date() |>
  mutate(values = values/100) |>
  ggplot() + geom_line(aes(x = date, y = values, color = Na_item)) +
  theme_minimal() +
  theme(legend.position = c(0.3, 0.82),
        legend.title = element_blank()) +
  scale_x_date(breaks = as.Date(paste0(seq(1960, 2100, 5), "-01-01")),
               labels = date_format("%Y")) +
  xlab("") + ylab("Share of GDP") +
  scale_y_continuous(labels = scales::percent_format(accuracy = 1))

na_item

France, Germany, Italy

Table, 2020

Code
gov_10a_taxag |>
  filter(sector == "S13",
         time == "2020",
         unit == "PC_GDP",
         geo %in% c("FR", "DE", "IT")) %>%
  select_if(~ n_distinct(.) > 1) |>
  
  
  select(-geo) |>
  spread(Geo, values) |>
  print_table_conditional()