Code
XTD <- read_parquet("XTD.parquet")Data - BIS
XTD <- read_parquet("XTD.parquet")Last observation: M: 2019-10-01 (N = 324) · Q: 2019-10-01 (N = 648)
First observation: M: 1993-01-01 (N = 648) · Q: 1993-01-01 (N = 648)
Last data update: 25 jul 2026, 10:03. Last compile: 17 aoû 2026, 23:51
XTD |>
arrange(iso3c, date) |>
group_by(iso3c, iso2c, `Location of trade (Exchange or country)`) |>
summarise(Nobs = n(),
start = first(date),
end = last(date)) |>
arrange(-Nobs) %>%
{if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}