Public
Edited
Aug 23, 2023
Insert cell
Insert cell
data = new Array(365).fill(0).map((_, i) => {
return { date: new Date().getDate() - i, amt: i }
})
Insert cell
Plot.plot({
y: {grid: true},
color: {legend: true},
marks: [
Plot.barY(data, {x: "date", y: "amt"})
]
})
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