Public
Edited
Mar 6, 2023
1 fork
Importers
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
md `## Group by Institution Type`
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
md`## Download .csv`
Insert cell
{
var title = {"institution_type":institution_type, "school": school, "program": program}
const div = DOM.element('div');
for (const t of Object.keys(title)){
div.appendChild(DOM.download(
new Blob([json2csv.parse(title[t])], {type: "application/csv"}),
`${t}.csv`, // optional file name
`Click to Download '${t}'` // optional button label
));
}

return div;
}
Insert cell
Insert cell
json2csv = require('json2csv@latest')
Insert cell
md`## Process for inappropriate format`
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