Main GDP aggregates per capita

Data - Eurostat

Info

source dataset .html .RData
eurostat namq_10_pc 2025-02-01 2025-05-18

Data on macro

Title source dataset .html .RData
Gross value added and income by A*10 industry breakdowns eurostat nama_10_a10 2025-05-18 2025-05-18
Employment by A*10 industry breakdowns eurostat nama_10_a10_e 2025-05-18 2025-05-18
GDP and main components (output, expenditure and income) eurostat nama_10_gdp 2025-05-18 2025-05-18
Labour productivity and unit labour costs eurostat nama_10_lp_ulc 2025-05-18 2025-05-18
Gross value added and income A*10 industry breakdowns eurostat namq_10_a10 2025-05-18 2025-05-18
Employment A*10 industry breakdowns eurostat namq_10_a10_e 2025-05-18 2025-05-18
GDP and main components (output, expenditure and income) eurostat namq_10_gdp 2025-05-18 2025-05-18
Labour productivity and unit labour costs eurostat namq_10_lp_ulc 2025-05-18 2025-05-18
Main GDP aggregates per capita eurostat namq_10_pc 2025-02-01 2025-05-18
Non-financial transactions eurostat nasa_10_nf_tr 2025-04-23 2025-05-18
Non-financial transactions eurostat nasq_10_nf_tr 2025-02-12 2025-05-18
Gross Domestic Product fred gdp 2025-05-18 2025-05-18
Quarterly National Accounts oecd QNA 2024-06-06 2025-03-31
Gross domestic product (GDP) oecd SNA_TABLE1 2025-03-04 2025-03-04
Non-financial accounts by sectors oecd SNA_TABLE14A 2024-09-15 2024-06-30
Disposable income and net lending - net borrowing oecd SNA_TABLE2 2024-07-01 2024-04-11
Value added and its components by activity, ISIC rev4 oecd SNA_TABLE6A 2024-07-01 2024-06-30
External balance on goods and services (% of GDP) wdi NE.RSB.GNFS.ZS 2025-03-09 2025-03-09
GDP (current USD) wdi NY.GDP.MKTP.CD 2025-03-09 2025-03-09
GDP, PPP (current international D) wdi NY.GDP.MKTP.PP.CD 2025-03-09 2025-03-09
GDP per capita (current USD) wdi NY.GDP.PCAP.CD 2025-03-31 2025-03-31
GDP per capita (constant 2015 USD) wdi NY.GDP.PCAP.KD 2025-03-09 2025-03-09
GDP per capita, PPP (current international D) wdi NY.GDP.PCAP.PP.CD 2025-03-31 2025-03-31
GDP per capita, PPP (constant 2011 international D) wdi NY.GDP.PCAP.PP.KD 2025-03-09 2025-03-09

LAST_COMPILE

LAST_COMPILE
2025-05-18

Last

Code
namq_10_pc %>%
  group_by(time) %>%
  summarise(Nobs = n()) %>%
  arrange(desc(time)) %>%
  head(1) %>%
  print_table_conditional()
time Nobs
2025Q1 243

na_item

Code
namq_10_pc %>%
  left_join(na_item, by = "na_item") %>%
  group_by(na_item, Na_item) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  {if (is_html_output()) print_table(.) else .}
na_item Na_item Nobs
B1GQ Gross domestic product at market prices 41142
P3 Final consumption expenditure 41106
P3_S13 Final consumption expenditure of general government 41106
P31_S14_S15 Household and NPISH final consumption expenditure 41102
P31_S14 Final consumption expenditure of households 40030
P31_S15 Final consumption expenditure of NPISH 40030
P31_S13 Individual consumption expenditure of general government 39278
P32_S13 Collective consumption expenditure of general government 39278
P41 Actual individual consumption 39162

unit

Code
namq_10_pc %>%
  left_join(unit, by = "unit") %>%
  group_by(unit, Unit) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  {if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}

geo

Code
namq_10_pc %>%
  left_join(geo, by = "geo") %>%
  group_by(geo, Geo) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  {if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}