=FileAttachment("../data/penguins.csv").csv({typed: true}) data
Observable Penguins
We can create a tabular representation of the full dataset:
.table(data) Inputs
Let’s create a simple scatterplot of bill_length_mm
vs bill_depth_mm
:
.plot({
Plotmarks: [
.dot(data, {x: "bill_length_mm", y: "bill_depth_mm", fill: "species"})
Plot,
]color: {legend: true}
})