Last observation: Q: 2023-Q4 (N = 195) · A: 2023 (N = 191)
First observation: A: 1950 (N = 67) · Q: 1972-Q2 (N = 11)
Last data update: 01 aoû 2026, 21:42. Last compile: 17 aoû 2026, 23:47
Data - IMF
Last observation: Q: 2023-Q4 (N = 195) · A: 2023 (N = 191)
First observation: A: 1950 (N = 67) · Q: 1972-Q2 (N = 11)
Last data update: 01 aoû 2026, 21:42. Last compile: 17 aoû 2026, 23:47
# This dataflow's columns (FREQ/REF_AREA/ACCOUNTING_ENTRY/STO/...) don't
# match an "INDICATOR"-style series code -- it's an ESA transaction-based
# national accounts structure instead. The chunk that used to be here
# filtered on a literal `INDICATOR == "NGDP_R_XDC"` column that doesn't
# exist in this data; replaced with a generic structure overview until the
# intended transaction/sector combination for "GDP, real, domestic
# currency" is confirmed.
NAMAIN_IDC_N |>
group_by(REF_AREA, STO, FREQ) |>
summarise(Nobs = n(),
date1 = first(TIME_PERIOD),
date2 = last(TIME_PERIOD)) |>
arrange(-Nobs) %>%
{if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}