Public
Edited
Apr 12, 2023
1 fork
Insert cell
Insert cell
Insert cell
pizzaOrders@2.csv
Type Table, then Shift-Enter. Ctrl-space for more options.

Insert cell
Plot.plot({
marks: [
Plot.barY(pizza, {x: "category", y: "orders", sort: {x: "y", reverse: true}}),
Plot.ruleY([0])
]
})
Insert cell
Plot.plot({
marks: [
Plot.boxX(pizza, {x: "orders", y: "category", sort: {y: "x"}})
]
})
Insert cell
Plot.plot({
marks: [
Plot.ruleY([0]),
Plot.lineY(pizza, {x: "orderDate", y: "orders"})
]
})
Insert cell
Plot.plot({
color: {
scheme: "ylgnbu"
},
marks: [
Plot.hexagon(pizza, Plot.hexbin({fill: "sum"}, {x: "orders", y: "unit_price"}))
]
})
Insert cell
Plot.plot({
marks: [
Plot.dot(pizza, Plot.dodgeY({x: "orders"}))
]
})
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