Published
Edited
Jul 14, 2022
Importers
Insert cell
Insert cell
function typeData(...stringVars) {
return (d) => {
const copyObj = {};
for (const prop in d) {
if (!stringVars.includes(prop)) {
copyObj[prop] = +d[prop];
} else {
copyObj[prop] = d[prop];
}
}
return copyObj;
};
}
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