Published
Edited
Oct 5, 2018
2 forks
8 stars
Insert cell
Insert cell
incomeLevelsData = jsonp(
"https://api.worldbank.org/v2/incomeLevels/LIC/countries?format=jsonp",
{
param: "prefix"
}
)
Insert cell
table(
incomeLevelsData[1].map(row => {
for (let key in row) {
if (typeof row[key] !== "string") row[key] = row[key].value;
}
return row;
})
)
Insert cell
Insert cell
Insert cell
Insert cell

Purpose-built for displays of data

Observable is your go-to platform for exploring data and creating expressive data visualizations. Use reactive JavaScript notebooks for prototyping and a collaborative canvas for visual data exploration and dashboard creation.
Learn more