Public
Edited
Nov 29, 2022
Insert cell
Insert cell
HealthAutoExport-2022-11-22-2022-11-29 Data.csv
Type Table, then Shift-Enter. Ctrl-space for more options.

Insert cell
Plot.plot({
height: 1000,
width,
marks: [
Plot.barY(healthautoexport, {
x: "Date",
y: "Walking + Running Distance (mi)",
sort: { y: "y" }
}),
Plot.ruleY([0])
]
})
Insert cell
healthautoexport.map((d) => {
const keys = Object.keys(d);
const obj = {};
keys.forEach((k, i) => {
if (d[k] !== null) obj[k] = d[k];
});
return obj;
})
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