Plot.plot({
grid: true,
aspectRatio: 0.5,
facet: {data: anscombe, x: "series"},
marks: [
Plot.frame(),
Plot.line(anscombe, {x: "x", y: "y"}),
Plot.dot(anscombe, {x: "x", y: "y"})
]
})
const anscombe = FileAttachment("data/anscombe.csv").csv({typed: true}).then(display);