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-22 2026-03-12

Last

obsTime

obsTime Nobs
2025 8191

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 640077
_T Total - all activities 125920

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 540222
S13 General government 97113
S1M Households and non-profit institutions serving households (NPISH) 42022
S14 Households 37719
S15 Non-profit institutions serving households 32613
_Z Not applicable 16308

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 197170
B1GQ Gross domestic product 44141
P6 Exports of goods and services 43070
P7 Imports of goods and services 43070
P51G Gross fixed capital formation 43033
P5 Gross capital formation 40774
B11 External balance of goods and services 39341
P3T5 Domestic demand 38269
P41 Actual individual consumption 35573
P61 Exports of goods 32184
P62 Exports of services 32184
P71 Imports of goods 32109
P72 Imports of services 32109
P32 Collective consumption expenditure 27424
P31 Individual consumption expenditure 27125
YA0 Statistical discrepancy (expenditure approach) 16308
P52 Changes in inventories 16144
P5M Changes in inventories and acquisitions less disposals of valuables 16119
P53 Acquisitions less disposals of valuables 9850

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) 197318
V Current prices 177950
Y Previous year prices 125280
VQ Current prices (constant converter) 121562
L Chain linked volume 95901
DR Deflator (rebased) 47986