| # | year | quarter | mineral | volume_kg | value_usd |
|---|---|---|---|---|---|
| loading... | |||||
| COLUMN | TYPE | DESCRIPTION | UNIT |
|---|---|---|---|
| year | int64 | Calendar year of the export quarter (2015-2024). | - |
| quarter | string | Quarter of the reporting year. Values: Q1, Q2, Q3, Q4. | - |
| mineral | string | Mineral type slug. Values: cassiterite (tin ore), wolfram (tungsten ore, labeled "Wolfram" in the volume table and "Wolframite" in the value table - both mapped to this slug), gold, other_minerals (a residual category covering all other exported mineral types including coltan/tantalite and gemstones). | - |
| volume_kg | float64 | Export volume in kilograms for the given year, quarter, and mineral. Null for gold in 2015-2018 (RMB systematic tracking of gold exports began in 2019). Some 2020 values include one decimal place (e.g. 565,993.2 kg) reflecting the source encoding; these are stored as float64 without rounding. | kg |
| value_usd | float64 | Export value in US dollars for the given year, quarter, and mineral. Null for gold in 2015-2018 (same tracking-start reason as volume_kg). | USD |
import imibare as imi
df = imi.load("rw.nisr.mineral-exports.quarterly")
print(df.head()) import duckdb
duckdb.sql("""
ATTACH 'https://catalog.cloudflarestorage.com/imibare-data'
AS imi (TYPE ICEBERG, READ_ONLY)
""")
duckdb.sql("SELECT * FROM imi.rw_nisr_mineral-exports_quarterly LIMIT 10").show() curl -L "https://api.imibare.org/v1/data/rw.nisr.mineral-exports.quarterly/download" \
-o "rw.nisr.mineral-exports.quarterly.parquet" # List all datasets
curl "https://api.imibare.org/v1/datasets"
# Get metadata for this dataset
curl "https://api.imibare.org/v1/datasets/rw.nisr.mineral-exports.quarterly" Every version is a change in the data, and every one is retained; snapshots are never overwritten. Each entry is a dated Parquet snapshot in the dataset's versions/ archive.
- 2026-06-26 Jun 26, 2026 LATEST160 rows · 5.4 KB · initial version
imibare contributors. (2026). Mineral Exports by Quarter [Data set]. imibare. v2026-06-26. https://imibare.org/datasets/rw.nisr.mineral-exports.quarterly
@dataset{imibare_rw_nisr_mineral-exports_quarterly, author = {imibare contributors}, title = {Mineral Exports by Quarter}, year = {2026}, publisher = {imibare}, version = {v2026-06-26}, url = {https://imibare.org/datasets/rw.nisr.mineral-exports.quarterly} }
imibare contributors. Mineral Exports by Quarter. v2026-06-26. imibare, 2026. https://imibare.org/datasets/rw.nisr.mineral-exports.quarterly.
imibare contributors. Mineral Exports by Quarter. v2026-06-26, imibare, 2026, https://imibare.org/datasets/rw.nisr.mineral-exports.quarterly.