Code
DER <- read_parquet("DER.parquet")Data - BIS
DER <- read_parquet("DER.parquet")Last observation: A: 2019-01-01 (N = 58014)
First observation: A: 1986-01-01 (N = 10)
Last data update: 25 jul 2026, 09:59. Last compile: 17 aoû 2026, 23:01
DER |>
arrange(iso3c, date) |>
group_by(iso3c, iso2c, `Derivatives reporting country`) |>
summarise(Nobs = n(),
start = first(date),
end = last(date)) |>
arrange(-Nobs) %>%
{if (is_html_output()) datatable(., filter = 'top', rownames = F) else .}