Public
Edited
Mar 6
Insert cell
Insert cell
dados = penguins
Insert cell
Plot.auto(dados, { x: "species", y: "island" }).plot({
marginLeft: 100,
height: 300,
r: { range: [1, 30] },
marks: [Plot.frame()]
})
Insert cell
Plot.plot({
marginLeft: 100,
height: 300,
r: { range: [1, 30] },
marks: [Plot.auto(dados, { x: "species", y: "island" }), Plot.frame()]
})
Insert cell
Plot.plot({
marginLeft: 100,
height: 300,
r: { range: [1, 30] },
marks: [
Plot.frame(),
Plot.dot(dados, Plot.group({ r: "count" }, { x: "species", y: "island" }))
]
})
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