Public
Edited
Feb 27
Insert cell
Insert cell
dados = penguins
Insert cell
dados
X
flipper_length_mm
Y
culmen_length_mm
Color
mean
culmen_depth_mm
Size
Facet X
species
Facet Y
island
Mark
Auto
Type Chart, then Shift-Enter. Ctrl-space for more options.

Insert cell
Plot.plot({
color: { scheme: "Blues", legend: true },
marginRight: 100,
marks: [
Plot.frame({ strokeOpacity: 0.1 }),
Plot.rect(
dados,
Plot.bin(
{ fill: "mean" },
{
fx: "species",
fy: "island",
x: "flipper_length_mm",
y: "culmen_length_mm",
fill: "culmen_depth_mm",
tip: true
}
)
)
]
})
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