Main GDP aggregates per capita

Data - Eurostat

Info

source dataset .html .RData
eurostat namq_10_pc 2024-11-22 2024-11-21

Data on macro

Title source dataset .html .RData
Gross value added and income by A*10 industry breakdowns eurostat nama_10_a10 2024-11-23 2024-10-08
Employment by A*10 industry breakdowns eurostat nama_10_a10_e 2024-11-23 2024-11-23
GDP and main components (output, expenditure and income) eurostat nama_10_gdp 2024-11-23 2024-11-22
Labour productivity and unit labour costs eurostat nama_10_lp_ulc 2024-11-23 2024-10-08
Gross value added and income A*10 industry breakdowns eurostat namq_10_a10 2024-11-23 2024-11-23
Employment A*10 industry breakdowns eurostat namq_10_a10_e 2024-11-23 2024-11-22
GDP and main components (output, expenditure and income) eurostat namq_10_gdp 2024-11-23 2024-11-22
Labour productivity and unit labour costs eurostat namq_10_lp_ulc 2024-11-23 2024-11-04
Main GDP aggregates per capita eurostat namq_10_pc 2024-11-22 2024-11-21
Non-financial transactions eurostat nasa_10_nf_tr 2024-11-22 2024-10-08
Non-financial transactions eurostat nasq_10_nf_tr 2024-11-22 2024-10-09
Gross Domestic Product fred gdp 2024-11-21 2024-11-21
Quarterly National Accounts oecd QNA 2024-06-06 2024-11-22
Gross domestic product (GDP) oecd SNA_TABLE1 2024-11-22 2024-11-22
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 2024-09-18 2024-09-18
GDP (current USD) wdi NY.GDP.MKTP.CD 2024-09-18 2024-09-26
GDP, PPP (current international D) wdi NY.GDP.MKTP.PP.CD 2024-09-18 2024-09-18
GDP per capita (current USD) wdi NY.GDP.PCAP.CD 2024-11-22 2024-11-21
GDP per capita (constant 2015 USD) wdi NY.GDP.PCAP.KD 2024-09-18 2024-09-18
GDP per capita, PPP (current international D) wdi NY.GDP.PCAP.PP.CD 2024-11-21 2024-11-21
GDP per capita, PPP (constant 2011 international D) wdi NY.GDP.PCAP.PP.KD 2024-11-21 2024-11-21

LAST_COMPILE

LAST_COMPILE
2024-11-23

Last

Code
namq_10_pc %>%
  group_by(time) %>%
  summarise(Nobs = n()) %>%
  arrange(desc(time)) %>%
  head(1) %>%
  print_table_conditional()
time Nobs
2024Q3 333

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 40530
P3 Final consumption expenditure 40509
P3_S13 Final consumption expenditure of general government 40509
P31_S14_S15 Household and NPISH final consumption expenditure 40505
P31_S13 Individual consumption expenditure of general government 38699
P31_S14 Final consumption expenditure of households 38699
P31_S15 Final consumption expenditure of NPISH 38699
P32_S13 Collective consumption expenditure of general government 38699
P41 Actual individual consumption 38559

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 .}