Quarterly National Accounts, GDP Per Capita

Data - OECD

Info

source dataset Title .html .rData
oecd TABLE1_EXPENDITURE Quarterly National Accounts, GDP Per Capita 2026-02-10 2026-02-16

Last

obsTime

obsTime Nobs
2025 1092

obsValue

REF_AREA

Code
TABLE1_EXPENDITURE %>%
  left_join(REF_AREA, by = "REF_AREA") %>%
  group_by(REF_AREA, Ref_area) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  print_table_conditional()

ACTIVITY

Code
TABLE1_EXPENDITURE %>%
  left_join(ACTIVITY, by = "ACTIVITY") %>%
  group_by(ACTIVITY, Activity) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  print_table_conditional()
ACTIVITY Activity Nobs
_Z Not applicable 634596
_T Total - all activities 124972

SECTOR

Code
TABLE1_EXPENDITURE %>%
  left_join(SECTOR, by = "SECTOR") %>%
  group_by(SECTOR, Sector) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  print_table_conditional()
SECTOR Sector Nobs
S1 Total economy 536150
S13 General government 96050
S1M Households and non-profit institutions serving households (NPISH) 41664
S14 Households 37345
S15 Non-profit institutions serving households 32238
_Z Not applicable 16121

TRANSACTION

Code
TABLE1_EXPENDITURE %>%
  left_join(TRANSACTION, by = "TRANSACTION") %>%
  group_by(TRANSACTION, Transaction) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  print_table_conditional()
TRANSACTION Transaction Nobs
P3 Final consumption expenditure 195332
B1GQ Gross domestic product 43768
P6 Exports of goods and services 42712
P7 Imports of goods and services 42712
P51G Gross fixed capital formation 42675
P5 Gross capital formation 40401
B11 External balance of goods and services 39002
P3T5 Domestic demand 37913
P41 Actual individual consumption 35198
P61 Exports of goods 32036
P62 Exports of services 32036
P71 Imports of goods 31961
P72 Imports of services 31961
P32 Collective consumption expenditure 27059
P31 Individual consumption expenditure 26785
YA0 Statistical discrepancy (expenditure approach) 16121
P52 Changes in inventories 16098
P5M Changes in inventories and acquisitions less disposals of valuables 15997
P53 Acquisitions less disposals of valuables 9801

PRICE_BASE

Code
TABLE1_EXPENDITURE %>%
  left_join(PRICE_BASE, by = "PRICE_BASE") %>%
  group_by(PRICE_BASE, Price_base) %>%
  summarise(Nobs = n()) %>%
  arrange(-Nobs) %>%
  print_table_conditional()
PRICE_BASE Price_base Nobs
LR Chain linked volume (rebased) 195515
V Current prices 176952
Y Previous year prices 124018
VQ Current prices (constant converter) 120482
L Chain linked volume 95050
DR Deflator (rebased) 47551