Plot.plot({
color: { legend: true },
x: { grid: true },
y: { grid: true },
width: 1200,
height: 800,
marginLeft: 125,
marginBottom: 50,
title: "State of the art",
marks: [
Plot.dot(
await FileAttachment("State of the art - Sheet1 (3).csv").csv({
typed: "auto"
}),
Plot.group(
{ r: "count" },
{ x: "function old", y: "function new", tip: true }
)
)
]
})