Upload 8 files
Browse files- sample/DICTIONARY.md +14 -0
- sample/LICENSE.txt +8 -0
- sample/MANIFEST.json +17 -0
- sample/PROVENANCE.md +11 -0
- sample/README.md +15 -0
- sample/data/gold_macro.csv +101 -0
- sample/data/gold_macro.parquet +3 -0
- sample/metrics.json +13 -0
sample/DICTIONARY.md
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Data Dictionary — AF-MACRO
|
| 2 |
+
|
| 3 |
+
_Generated 2026-07-23._
|
| 4 |
+
|
| 5 |
+
| Field | Type | Definition |
|
| 6 |
+
|---|---|---|
|
| 7 |
+
| `country_iso3` | string | ISO-3 country code. |
|
| 8 |
+
| `country_name` | string | Country name. |
|
| 9 |
+
| `indicator_code` | string | World Bank indicator code (e.g. FP.CPI.TOTL.ZG). |
|
| 10 |
+
| `indicator_name` | string | Human-readable indicator name. |
|
| 11 |
+
| `year` | integer | Observation year. |
|
| 12 |
+
| `value` | number | Indicator value for the country-year. |
|
| 13 |
+
| `source_ref` | string | World Bank series reference (S013:worldbank/<code>). |
|
| 14 |
+
| `license_class` | string | License Register code (S013, CC BY 4.0). |
|
sample/LICENSE.txt
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
DATA LICENSE
|
| 2 |
+
|
| 3 |
+
This dataset is licensed to the recipient for commercial use, subject to the terms of the sources it is derived from (each licensed for such use) and the delivery agreement.
|
| 4 |
+
|
| 5 |
+
Sources and their license basis:
|
| 6 |
+
- S013 World Bank Open Data: CC BY 4.0 (open data, incl. commercial use) (conditions: Attribution to World Bank; indicator values only (public statistics, no natural persons))
|
| 7 |
+
|
| 8 |
+
Attribution is provided per each source's conditions. This product contains NO natural-person data (directors, shareholders, contacts). Every record carries its source class and observation time for full provenance.
|
sample/MANIFEST.json
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"sku": "AF-MACRO",
|
| 3 |
+
"tier": "sample",
|
| 4 |
+
"generated_at": "2026-07-23",
|
| 5 |
+
"row_counts": {
|
| 6 |
+
"gold_macro": 100
|
| 7 |
+
},
|
| 8 |
+
"files": [
|
| 9 |
+
"DICTIONARY.md",
|
| 10 |
+
"LICENSE.txt",
|
| 11 |
+
"PROVENANCE.md",
|
| 12 |
+
"README.md",
|
| 13 |
+
"data/gold_macro.csv",
|
| 14 |
+
"data/gold_macro.parquet",
|
| 15 |
+
"metrics.json"
|
| 16 |
+
]
|
| 17 |
+
}
|
sample/PROVENANCE.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Provenance Annex — AF-MACRO
|
| 2 |
+
|
| 3 |
+
_Generated 2026-07-23. The sources below are the `license_class` values present in this SKU's gold export; each is licensed for the stated use._
|
| 4 |
+
|
| 5 |
+
| Source | License / basis | Conditions honored | Access |
|
| 6 |
+
|---|---|---|---|
|
| 7 |
+
| S013 — World Bank Open Data | CC BY 4.0 (open data, incl. commercial use) | Attribution to World Bank; indicator values only (public statistics, no natural persons) | REST API (no key) |
|
| 8 |
+
|
| 9 |
+
## Attribution
|
| 10 |
+
|
| 11 |
+
This product contains data derived from the sources above under their stated licenses; attribution is provided per each source's conditions. No natural-person data is included (hard rule #1). Every gold record carries `license_class`, `observed_at`, and a source reference, so any source can be surgically removed if its terms change.
|
sample/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# AF-MACRO — sample package
|
| 2 |
+
|
| 3 |
+
License-clean African & emerging-markets company data — point-in-time, provenance-documented. See PROVENANCE.md and LICENSE.txt.
|
| 4 |
+
|
| 5 |
+
## Quickstart
|
| 6 |
+
|
| 7 |
+
```python
|
| 8 |
+
import duckdb, pandas as pd
|
| 9 |
+
df = duckdb.sql("select * from 'data/gold_fundamentals.parquet'").df() # or read_csv
|
| 10 |
+
df = pd.read_parquet('data/gold_fundamentals.parquet')
|
| 11 |
+
```
|
| 12 |
+
|
| 13 |
+
Excel: open any `data/*.csv` directly. Fields are documented in DICTIONARY.md; coverage and freshness in metrics.json.
|
| 14 |
+
|
| 15 |
+
> This is a truncated free SAMPLE. Full history is in the paid tiers.
|
sample/data/gold_macro.csv
ADDED
|
@@ -0,0 +1,101 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
country_iso3,country_name,indicator_code,indicator_name,year,value,observed_at,source_ref,license_class
|
| 2 |
+
CIV,Cote d'Ivoire,BX.KLT.DINV.CD.WD,"Foreign direct investment, net inflows (BoP, current US$)",2020,712915894.481616,2026-07-22 11:14:52.498318+02,S013:worldbank/BX.KLT.DINV.CD.WD,S013
|
| 3 |
+
CIV,Cote d'Ivoire,GC.TAX.TOTL.GD.ZS,Tax revenue (% of GDP),2010,10.213762113664,2026-07-22 11:14:52.517015+02,S013:worldbank/GC.TAX.TOTL.GD.ZS,S013
|
| 4 |
+
CIV,Cote d'Ivoire,GC.TAX.TOTL.GD.ZS,Tax revenue (% of GDP),2015,11.1757327985719,2026-07-22 11:14:52.517015+02,S013:worldbank/GC.TAX.TOTL.GD.ZS,S013
|
| 5 |
+
CIV,Cote d'Ivoire,GC.TAX.TOTL.GD.ZS,Tax revenue (% of GDP),2023,13.0371915910548,2026-07-22 11:14:52.517015+02,S013:worldbank/GC.TAX.TOTL.GD.ZS,S013
|
| 6 |
+
CIV,Cote d'Ivoire,NY.GNP.PCAP.CD,"GNI per capita, Atlas method (current US$)",2010,1120.0,2026-07-22 11:14:52.461+02,S013:worldbank/NY.GNP.PCAP.CD,S013
|
| 7 |
+
CIV,Cote d'Ivoire,NY.GNP.PCAP.CD,"GNI per capita, Atlas method (current US$)",2015,1880.0,2026-07-22 11:14:52.461+02,S013:worldbank/NY.GNP.PCAP.CD,S013
|
| 8 |
+
CIV,Cote d'Ivoire,NY.GNP.PCAP.CD,"GNI per capita, Atlas method (current US$)",2023,2510.0,2026-07-22 11:14:52.461+02,S013:worldbank/NY.GNP.PCAP.CD,S013
|
| 9 |
+
CIV,Cote d'Ivoire,SL.UEM.TOTL.ZS,"Unemployment, total (% of total labor force) (modeled ILO estimate)",2020,2.588,2026-07-22 11:14:52.478754+02,S013:worldbank/SL.UEM.TOTL.ZS,S013
|
| 10 |
+
CIV,Cote d'Ivoire,SP.DYN.LE00.IN,"Life expectancy at birth, total (years)",2012,56.57,2026-07-22 11:14:52.525339+02,S013:worldbank/SP.DYN.LE00.IN,S013
|
| 11 |
+
EGY,"Egypt, Arab Rep.",BX.KLT.DINV.CD.WD,"Foreign direct investment, net inflows (BoP, current US$)",2010,6385600000.0,2026-07-22 11:14:52.498318+02,S013:worldbank/BX.KLT.DINV.CD.WD,S013
|
| 12 |
+
EGY,"Egypt, Arab Rep.",BX.KLT.DINV.CD.WD,"Foreign direct investment, net inflows (BoP, current US$)",2015,6925200000.0,2026-07-22 11:14:52.498318+02,S013:worldbank/BX.KLT.DINV.CD.WD,S013
|
| 13 |
+
EGY,"Egypt, Arab Rep.",BX.KLT.DINV.CD.WD,"Foreign direct investment, net inflows (BoP, current US$)",2023,9840600000.0,2026-07-22 11:14:52.498318+02,S013:worldbank/BX.KLT.DINV.CD.WD,S013
|
| 14 |
+
EGY,"Egypt, Arab Rep.",NY.GNP.PCAP.CD,"GNI per capita, Atlas method (current US$)",2017,2880.0,2026-07-22 11:14:52.461+02,S013:worldbank/NY.GNP.PCAP.CD,S013
|
| 15 |
+
EGY,"Egypt, Arab Rep.",NY.GNP.PCAP.CD,"GNI per capita, Atlas method (current US$)",2022,4040.0,2026-07-22 11:14:52.461+02,S013:worldbank/NY.GNP.PCAP.CD,S013
|
| 16 |
+
EGY,"Egypt, Arab Rep.",SP.DYN.LE00.IN,"Life expectancy at birth, total (years)",2010,69.078,2026-07-22 11:14:52.525339+02,S013:worldbank/SP.DYN.LE00.IN,S013
|
| 17 |
+
EGY,"Egypt, Arab Rep.",SP.DYN.LE00.IN,"Life expectancy at birth, total (years)",2015,70.135,2026-07-22 11:14:52.525339+02,S013:worldbank/SP.DYN.LE00.IN,S013
|
| 18 |
+
EGY,"Egypt, Arab Rep.",SP.DYN.LE00.IN,"Life expectancy at birth, total (years)",2023,71.633,2026-07-22 11:14:52.525339+02,S013:worldbank/SP.DYN.LE00.IN,S013
|
| 19 |
+
EGY,"Egypt, Arab Rep.",SP.POP.TOTL,"Population, total",2021,110957008.0,2026-07-22 11:14:52.452271+02,S013:worldbank/SP.POP.TOTL,S013
|
| 20 |
+
ETH,Ethiopia,BX.KLT.DINV.CD.WD,"Foreign direct investment, net inflows (BoP, current US$)",2013,1343876023.73137,2026-07-22 11:14:52.498318+02,S013:worldbank/BX.KLT.DINV.CD.WD,S013
|
| 21 |
+
ETH,Ethiopia,BX.KLT.DINV.CD.WD,"Foreign direct investment, net inflows (BoP, current US$)",2019,2548743427.35753,2026-07-22 11:14:52.498318+02,S013:worldbank/BX.KLT.DINV.CD.WD,S013
|
| 22 |
+
ETH,Ethiopia,NY.GDP.MKTP.CD,GDP (current US$),2021,109070960370.972,2026-07-22 11:14:49.262769+02,S013:worldbank/NY.GDP.MKTP.CD,S013
|
| 23 |
+
ETH,Ethiopia,NY.GDP.MKTP.KD.ZG,GDP growth (annual %),2016,9.43348265981905,2026-07-22 11:14:52.435869+02,S013:worldbank/NY.GDP.MKTP.KD.ZG,S013
|
| 24 |
+
ETH,Ethiopia,NY.GNP.PCAP.CD,"GNI per capita, Atlas method (current US$)",2017,670.0,2026-07-22 11:14:52.461+02,S013:worldbank/NY.GNP.PCAP.CD,S013
|
| 25 |
+
ETH,Ethiopia,NY.GNP.PCAP.CD,"GNI per capita, Atlas method (current US$)",2022,960.0,2026-07-22 11:14:52.461+02,S013:worldbank/NY.GNP.PCAP.CD,S013
|
| 26 |
+
ETH,Ethiopia,SL.UEM.TOTL.ZS,"Unemployment, total (% of total labor force) (modeled ILO estimate)",2010,2.295,2026-07-22 11:14:52.478754+02,S013:worldbank/SL.UEM.TOTL.ZS,S013
|
| 27 |
+
ETH,Ethiopia,SL.UEM.TOTL.ZS,"Unemployment, total (% of total labor force) (modeled ILO estimate)",2015,2.442,2026-07-22 11:14:52.478754+02,S013:worldbank/SL.UEM.TOTL.ZS,S013
|
| 28 |
+
ETH,Ethiopia,SL.UEM.TOTL.ZS,"Unemployment, total (% of total labor force) (modeled ILO estimate)",2023,3.375,2026-07-22 11:14:52.478754+02,S013:worldbank/SL.UEM.TOTL.ZS,S013
|
| 29 |
+
ETH,Ethiopia,SP.DYN.LE00.IN,"Life expectancy at birth, total (years)",2020,65.969,2026-07-22 11:14:52.525339+02,S013:worldbank/SP.DYN.LE00.IN,S013
|
| 30 |
+
GHA,Ghana,BX.KLT.DINV.CD.WD,"Foreign direct investment, net inflows (BoP, current US$)",2017,3254990000.0,2026-07-22 11:14:52.498318+02,S013:worldbank/BX.KLT.DINV.CD.WD,S013
|
| 31 |
+
GHA,Ghana,BX.KLT.DINV.CD.WD,"Foreign direct investment, net inflows (BoP, current US$)",2022,1428411737.133,2026-07-22 11:14:52.498318+02,S013:worldbank/BX.KLT.DINV.CD.WD,S013
|
| 32 |
+
GHA,Ghana,FP.CPI.TOTL.ZG,"Inflation, consumer prices (annual %)",2020,9.88728956269944,2026-07-22 11:14:52.44472+02,S013:worldbank/FP.CPI.TOTL.ZG,S013
|
| 33 |
+
GHA,Ghana,GC.TAX.TOTL.GD.ZS,Tax revenue (% of GDP),2017,11.5770312754335,2026-07-22 11:14:52.517015+02,S013:worldbank/GC.TAX.TOTL.GD.ZS,S013
|
| 34 |
+
GHA,Ghana,GC.TAX.TOTL.GD.ZS,Tax revenue (% of GDP),2022,12.2975358059171,2026-07-22 11:14:52.517015+02,S013:worldbank/GC.TAX.TOTL.GD.ZS,S013
|
| 35 |
+
GHA,Ghana,NY.GDP.MKTP.KD.ZG,GDP growth (annual %),2020,0.513941670628171,2026-07-22 11:14:52.435869+02,S013:worldbank/NY.GDP.MKTP.KD.ZG,S013
|
| 36 |
+
GHA,Ghana,NY.GNP.PCAP.CD,"GNI per capita, Atlas method (current US$)",2012,1490.0,2026-07-22 11:14:52.461+02,S013:worldbank/NY.GNP.PCAP.CD,S013
|
| 37 |
+
GHA,Ghana,PA.NUS.FCRF,"Official exchange rate (LCU per US$, period average)",2024,14.1819416666667,2026-07-22 11:14:52.509125+02,S013:worldbank/PA.NUS.FCRF,S013
|
| 38 |
+
GHA,Ghana,SL.UEM.TOTL.ZS,"Unemployment, total (% of total labor force) (modeled ILO estimate)",2010,5.384,2026-07-22 11:14:52.478754+02,S013:worldbank/SL.UEM.TOTL.ZS,S013
|
| 39 |
+
GHA,Ghana,SL.UEM.TOTL.ZS,"Unemployment, total (% of total labor force) (modeled ILO estimate)",2015,6.806,2026-07-22 11:14:52.478754+02,S013:worldbank/SL.UEM.TOTL.ZS,S013
|
| 40 |
+
GHA,Ghana,SL.UEM.TOTL.ZS,"Unemployment, total (% of total labor force) (modeled ILO estimate)",2023,2.829,2026-07-22 11:14:52.478754+02,S013:worldbank/SL.UEM.TOTL.ZS,S013
|
| 41 |
+
GHA,Ghana,SP.DYN.LE00.IN,"Life expectancy at birth, total (years)",2010,61.297,2026-07-22 11:14:52.525339+02,S013:worldbank/SP.DYN.LE00.IN,S013
|
| 42 |
+
GHA,Ghana,SP.DYN.LE00.IN,"Life expectancy at birth, total (years)",2015,63.175,2026-07-22 11:14:52.525339+02,S013:worldbank/SP.DYN.LE00.IN,S013
|
| 43 |
+
GHA,Ghana,SP.DYN.LE00.IN,"Life expectancy at birth, total (years)",2023,65.498,2026-07-22 11:14:52.525339+02,S013:worldbank/SP.DYN.LE00.IN,S013
|
| 44 |
+
KEN,Kenya,BX.KLT.DINV.CD.WD,"Foreign direct investment, net inflows (BoP, current US$)",2016,469533310.683932,2026-07-22 11:14:52.498318+02,S013:worldbank/BX.KLT.DINV.CD.WD,S013
|
| 45 |
+
KEN,Kenya,FP.CPI.TOTL.ZG,"Inflation, consumer prices (annual %)",2011,14.0224913014704,2026-07-22 11:14:52.44472+02,S013:worldbank/FP.CPI.TOTL.ZG,S013
|
| 46 |
+
KEN,Kenya,FR.INR.RINR,Real interest rate (%),2020,6.71463440906742,2026-07-22 11:14:52.470017+02,S013:worldbank/FR.INR.RINR,S013
|
| 47 |
+
KEN,Kenya,NE.EXP.GNFS.ZS,Exports of goods and services (% of GDP),2011,21.5494770708279,2026-07-22 11:14:52.48928+02,S013:worldbank/NE.EXP.GNFS.ZS,S013
|
| 48 |
+
KEN,Kenya,NY.GDP.MKTP.CD,GDP (current US$),2013,61671440407.8387,2026-07-22 11:14:49.262769+02,S013:worldbank/NY.GDP.MKTP.CD,S013
|
| 49 |
+
KEN,Kenya,NY.GDP.MKTP.CD,GDP (current US$),2019,100378436207.371,2026-07-22 11:14:49.262769+02,S013:worldbank/NY.GDP.MKTP.CD,S013
|
| 50 |
+
KEN,Kenya,NY.GDP.MKTP.KD.ZG,GDP growth (annual %),2011,5.1211061197056,2026-07-22 11:14:52.435869+02,S013:worldbank/NY.GDP.MKTP.KD.ZG,S013
|
| 51 |
+
KEN,Kenya,PA.NUS.FCRF,"Official exchange rate (LCU per US$, period average)",2013,86.1228788982654,2026-07-22 11:14:52.509125+02,S013:worldbank/PA.NUS.FCRF,S013
|
| 52 |
+
KEN,Kenya,PA.NUS.FCRF,"Official exchange rate (LCU per US$, period average)",2019,101.99129838935,2026-07-22 11:14:52.509125+02,S013:worldbank/PA.NUS.FCRF,S013
|
| 53 |
+
KEN,Kenya,SL.UEM.TOTL.ZS,"Unemployment, total (% of total labor force) (modeled ILO estimate)",2020,5.613,2026-07-22 11:14:52.478754+02,S013:worldbank/SL.UEM.TOTL.ZS,S013
|
| 54 |
+
KEN,Kenya,SP.DYN.LE00.IN,"Life expectancy at birth, total (years)",2010,60.915,2026-07-22 11:14:52.525339+02,S013:worldbank/SP.DYN.LE00.IN,S013
|
| 55 |
+
KEN,Kenya,SP.DYN.LE00.IN,"Life expectancy at birth, total (years)",2015,62.279,2026-07-22 11:14:52.525339+02,S013:worldbank/SP.DYN.LE00.IN,S013
|
| 56 |
+
KEN,Kenya,SP.DYN.LE00.IN,"Life expectancy at birth, total (years)",2023,63.646,2026-07-22 11:14:52.525339+02,S013:worldbank/SP.DYN.LE00.IN,S013
|
| 57 |
+
KEN,Kenya,SP.POP.TOTL,"Population, total",2012,43888303.0,2026-07-22 11:14:52.452271+02,S013:worldbank/SP.POP.TOTL,S013
|
| 58 |
+
MAR,Morocco,NE.EXP.GNFS.ZS,Exports of goods and services (% of GDP),2020,30.7941069539783,2026-07-22 11:14:52.48928+02,S013:worldbank/NE.EXP.GNFS.ZS,S013
|
| 59 |
+
MAR,Morocco,NY.GDP.MKTP.CD,GDP (current US$),2020,121353645057.144,2026-07-22 11:14:49.262769+02,S013:worldbank/NY.GDP.MKTP.CD,S013
|
| 60 |
+
MAR,Morocco,NY.GNP.PCAP.CD,"GNI per capita, Atlas method (current US$)",2014,3330.0,2026-07-22 11:14:52.461+02,S013:worldbank/NY.GNP.PCAP.CD,S013
|
| 61 |
+
MAR,Morocco,NY.GNP.PCAP.CD,"GNI per capita, Atlas method (current US$)",2018,3380.0,2026-07-22 11:14:52.461+02,S013:worldbank/NY.GNP.PCAP.CD,S013
|
| 62 |
+
MAR,Morocco,SP.DYN.LE00.IN,"Life expectancy at birth, total (years)",2021,73.385,2026-07-22 11:14:52.525339+02,S013:worldbank/SP.DYN.LE00.IN,S013
|
| 63 |
+
MAR,Morocco,SP.POP.TOTL,"Population, total",2012,33355241.0,2026-07-22 11:14:52.452271+02,S013:worldbank/SP.POP.TOTL,S013
|
| 64 |
+
NGA,Nigeria,NY.GDP.MKTP.CD,GDP (current US$),2024,252261880140.271,2026-07-22 11:14:49.262769+02,S013:worldbank/NY.GDP.MKTP.CD,S013
|
| 65 |
+
NGA,Nigeria,NY.GDP.MKTP.KD.ZG,GDP growth (annual %),2014,6.30971865521856,2026-07-22 11:14:52.435869+02,S013:worldbank/NY.GDP.MKTP.KD.ZG,S013
|
| 66 |
+
NGA,Nigeria,NY.GDP.MKTP.KD.ZG,GDP growth (annual %),2018,1.92275734199798,2026-07-22 11:14:52.435869+02,S013:worldbank/NY.GDP.MKTP.KD.ZG,S013
|
| 67 |
+
NGA,Nigeria,SL.UEM.TOTL.ZS,"Unemployment, total (% of total labor force) (modeled ILO estimate)",2012,3.761,2026-07-22 11:14:52.478754+02,S013:worldbank/SL.UEM.TOTL.ZS,S013
|
| 68 |
+
NGA,Nigeria,SP.POP.TOTL,"Population, total",2014,185896915.0,2026-07-22 11:14:52.452271+02,S013:worldbank/SP.POP.TOTL,S013
|
| 69 |
+
NGA,Nigeria,SP.POP.TOTL,"Population, total",2018,204938755.0,2026-07-22 11:14:52.452271+02,S013:worldbank/SP.POP.TOTL,S013
|
| 70 |
+
RWA,Rwanda,GC.TAX.TOTL.GD.ZS,Tax revenue (% of GDP),2021,14.2399233769806,2026-07-22 11:14:52.517015+02,S013:worldbank/GC.TAX.TOTL.GD.ZS,S013
|
| 71 |
+
RWA,Rwanda,NE.EXP.GNFS.ZS,Exports of goods and services (% of GDP),2011,12.7825549476213,2026-07-22 11:14:52.48928+02,S013:worldbank/NE.EXP.GNFS.ZS,S013
|
| 72 |
+
RWA,Rwanda,NY.GDP.MKTP.CD,GDP (current US$),2016,8596812240.52305,2026-07-22 11:14:49.262769+02,S013:worldbank/NY.GDP.MKTP.CD,S013
|
| 73 |
+
RWA,Rwanda,SP.DYN.LE00.IN,"Life expectancy at birth, total (years)",2021,66.85,2026-07-22 11:14:52.525339+02,S013:worldbank/SP.DYN.LE00.IN,S013
|
| 74 |
+
RWA,Rwanda,SP.POP.TOTL,"Population, total",2011,10573733.0,2026-07-22 11:14:52.452271+02,S013:worldbank/SP.POP.TOTL,S013
|
| 75 |
+
SEN,Senegal,BX.KLT.DINV.CD.WD,"Foreign direct investment, net inflows (BoP, current US$)",2024,2016428880.0,2026-07-22 11:14:52.498318+02,S013:worldbank/BX.KLT.DINV.CD.WD,S013
|
| 76 |
+
SEN,Senegal,FP.CPI.TOTL.ZG,"Inflation, consumer prices (annual %)",2010,1.22868119673344,2026-07-22 11:14:52.44472+02,S013:worldbank/FP.CPI.TOTL.ZG,S013
|
| 77 |
+
SEN,Senegal,FP.CPI.TOTL.ZG,"Inflation, consumer prices (annual %)",2015,0.135211933635165,2026-07-22 11:14:52.44472+02,S013:worldbank/FP.CPI.TOTL.ZG,S013
|
| 78 |
+
SEN,Senegal,FP.CPI.TOTL.ZG,"Inflation, consumer prices (annual %)",2023,5.93947798773215,2026-07-22 11:14:52.44472+02,S013:worldbank/FP.CPI.TOTL.ZG,S013
|
| 79 |
+
SEN,Senegal,FR.INR.RINR,Real interest rate (%),2016,4.29827404488885,2026-07-22 11:14:52.470017+02,S013:worldbank/FR.INR.RINR,S013
|
| 80 |
+
SEN,Senegal,GC.TAX.TOTL.GD.ZS,Tax revenue (% of GDP),2018,16.3782524667298,2026-07-22 11:14:52.517015+02,S013:worldbank/GC.TAX.TOTL.GD.ZS,S013
|
| 81 |
+
SEN,Senegal,NE.EXP.GNFS.ZS,Exports of goods and services (% of GDP),2020,20.7005528555706,2026-07-22 11:14:52.48928+02,S013:worldbank/NE.EXP.GNFS.ZS,S013
|
| 82 |
+
SEN,Senegal,NY.GDP.MKTP.CD,GDP (current US$),2014,19797253440.2679,2026-07-22 11:14:49.262769+02,S013:worldbank/NY.GDP.MKTP.CD,S013
|
| 83 |
+
SEN,Senegal,NY.GDP.MKTP.CD,GDP (current US$),2018,23116701556.1381,2026-07-22 11:14:49.262769+02,S013:worldbank/NY.GDP.MKTP.CD,S013
|
| 84 |
+
SEN,Senegal,NY.GDP.MKTP.KD.ZG,GDP growth (annual %),2011,1.33409107961258,2026-07-22 11:14:52.435869+02,S013:worldbank/NY.GDP.MKTP.KD.ZG,S013
|
| 85 |
+
SEN,Senegal,NY.GNP.PCAP.CD,"GNI per capita, Atlas method (current US$)",2024,1630.0,2026-07-22 11:14:52.461+02,S013:worldbank/NY.GNP.PCAP.CD,S013
|
| 86 |
+
SEN,Senegal,SP.DYN.LE00.IN,"Life expectancy at birth, total (years)",2021,66.868,2026-07-22 11:14:52.525339+02,S013:worldbank/SP.DYN.LE00.IN,S013
|
| 87 |
+
TZA,Tanzania,BX.KLT.DINV.CD.WD,"Foreign direct investment, net inflows (BoP, current US$)",2017,937700000.0,2026-07-22 11:14:52.498318+02,S013:worldbank/BX.KLT.DINV.CD.WD,S013
|
| 88 |
+
TZA,Tanzania,BX.KLT.DINV.CD.WD,"Foreign direct investment, net inflows (BoP, current US$)",2022,1437575169.471,2026-07-22 11:14:52.498318+02,S013:worldbank/BX.KLT.DINV.CD.WD,S013
|
| 89 |
+
TZA,Tanzania,GC.TAX.TOTL.GD.ZS,Tax revenue (% of GDP),2017,11.8367190192838,2026-07-22 11:14:52.517015+02,S013:worldbank/GC.TAX.TOTL.GD.ZS,S013
|
| 90 |
+
TZA,Tanzania,GC.TAX.TOTL.GD.ZS,Tax revenue (% of GDP),2022,11.7926807934669,2026-07-22 11:14:52.517015+02,S013:worldbank/GC.TAX.TOTL.GD.ZS,S013
|
| 91 |
+
TZA,Tanzania,NE.EXP.GNFS.ZS,Exports of goods and services (% of GDP),2013,19.0127876013666,2026-07-22 11:14:52.48928+02,S013:worldbank/NE.EXP.GNFS.ZS,S013
|
| 92 |
+
TZA,Tanzania,NE.EXP.GNFS.ZS,Exports of goods and services (% of GDP),2019,16.0367461484986,2026-07-22 11:14:52.48928+02,S013:worldbank/NE.EXP.GNFS.ZS,S013
|
| 93 |
+
TZA,Tanzania,NY.GDP.MKTP.CD,GDP (current US$),2024,79235713444.9777,2026-07-22 11:14:49.262769+02,S013:worldbank/NY.GDP.MKTP.CD,S013
|
| 94 |
+
TZA,Tanzania,NY.GNP.PCAP.CD,"GNI per capita, Atlas method (current US$)",2010,720.0,2026-07-22 11:14:52.461+02,S013:worldbank/NY.GNP.PCAP.CD,S013
|
| 95 |
+
TZA,Tanzania,NY.GNP.PCAP.CD,"GNI per capita, Atlas method (current US$)",2015,970.0,2026-07-22 11:14:52.461+02,S013:worldbank/NY.GNP.PCAP.CD,S013
|
| 96 |
+
TZA,Tanzania,NY.GNP.PCAP.CD,"GNI per capita, Atlas method (current US$)",2023,1220.0,2026-07-22 11:14:52.461+02,S013:worldbank/NY.GNP.PCAP.CD,S013
|
| 97 |
+
TZA,Tanzania,PA.NUS.FCRF,"Official exchange rate (LCU per US$, period average)",2013,1597.55583333333,2026-07-22 11:14:52.509125+02,S013:worldbank/PA.NUS.FCRF,S013
|
| 98 |
+
TZA,Tanzania,PA.NUS.FCRF,"Official exchange rate (LCU per US$, period average)",2019,2288.20666666667,2026-07-22 11:14:52.509125+02,S013:worldbank/PA.NUS.FCRF,S013
|
| 99 |
+
TZA,Tanzania,SL.UEM.TOTL.ZS,"Unemployment, total (% of total labor force) (modeled ILO estimate)",2016,1.931,2026-07-22 11:14:52.478754+02,S013:worldbank/SL.UEM.TOTL.ZS,S013
|
| 100 |
+
UGA,Uganda,NE.EXP.GNFS.ZS,Exports of goods and services (% of GDP),2024,16.7575931152554,2026-07-22 11:14:52.48928+02,S013:worldbank/NE.EXP.GNFS.ZS,S013
|
| 101 |
+
UGA,Uganda,NY.GDP.MKTP.KD.ZG,GDP growth (annual %),2024,6.05558075875589,2026-07-22 11:14:52.435869+02,S013:worldbank/NY.GDP.MKTP.KD.ZG,S013
|
sample/data/gold_macro.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b17f54fbd0799df43870f4c1892bd6993fe1bb92d129ca3e509eb99c1acbf08e
|
| 3 |
+
size 4237
|
sample/metrics.json
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"sku": "AF-MACRO",
|
| 3 |
+
"generated_at": "2026-07-23",
|
| 4 |
+
"tables": {
|
| 5 |
+
"gold_macro": {
|
| 6 |
+
"row_count": 100
|
| 7 |
+
}
|
| 8 |
+
},
|
| 9 |
+
"totals": {
|
| 10 |
+
"row_count": 100,
|
| 11 |
+
"table_count": 1
|
| 12 |
+
}
|
| 13 |
+
}
|