Quarterly National Accounts, GDP Per Capita

Data - OECD

Info

source dataset Title .html .rData
oecd TABLE1_EXPENDITURE Quarterly National Accounts, GDP Per Capita 2026-08-12 2026-08-11

Last

obsTime

obsTime Nobs
2025 11296

obsValue

REF_AREA PRICE_BASE obsTime obsValue
NA NA NA NA
:--------: :----------: :-------: :--------:

REF_AREA

Code
TABLE1_EXPENDITURE |>
  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 643839
_T Total - all activities 126867

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 543383
S13 General government 97823
S1M Households and non-profit institutions serving households (NPISH) 42279
S14 Households 37986
S15 Non-profit institutions serving households 32853
_Z Not applicable 16382

TRANSACTION

Code
TABLE1_EXPENDITURE |>
  group_by(TRANSACTION, Transaction) |>
  summarise(Nobs = n()) |>
  arrange(-Nobs) |>
  print_table_conditional()
TRANSACTION Transaction Nobs
P3 Final consumption expenditure 198461
B1GQ Gross domestic product 44403
P6 Exports of goods and services 43341
P7 Imports of goods and services 43340
P51G Gross fixed capital formation 43319
P5 Gross capital formation 41035
B11 External balance of goods and services 39598
P3T5 Domestic demand 38480
P41 Actual individual consumption 35804
P61 Exports of goods 32295
P62 Exports of services 32295
P71 Imports of goods 32220
P72 Imports of services 32220
P32 Collective consumption expenditure 27651
P31 Individual consumption expenditure 27349
YA0 Statistical discrepancy (expenditure approach) 16382
P52 Changes in inventories 16296
P5M Changes in inventories and acquisitions less disposals of valuables 16240
P53 Acquisitions less disposals of valuables 9977

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) 198471
V Current prices 179373
Y Previous year prices 126041
VQ Current prices (constant converter) 122092
L Chain linked volume 96481
DR Deflator (rebased) 48248