Published
Edited
Feb 18, 2021
2 stars
Insert cell
Insert cell
Insert cell
table(ip_research_table, {
title: "Indigenous Peoples Literature",
paged: 40,
sortable: true,
})
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
ip_research = { // this is a JS Array of Objects; the key-value pairs consist of the column headers and the cell data
let names =[];
const spreadsheet = await d3.tsv(ip_research_url).then(data => data.forEach(d => names.push(d))); // d3.tsv returns a Promise
return names;
}
Insert cell
Insert cell
ip_research_table = ip_research.map(({key, "original file name":originalFileName, "Region / Country:":region ,"Author(s)":authors, "Title / Article Name":title, Year, "Journal / Publication":journal,}) => ({
authors,
Year,
title,
journal,
}))
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