Plot.plot({
style: "overflow: visible;",
color: { legend: true },
title: "miss ratio on " + trace + " trace",
x: {
label: "Cache size",
grid: true,
type: xscale,
},
y: { label: "Miss ratio", grid: true, type: yscale },
marks: [
Plot.lineY(plotData2, {
x: "Cache size",
y: "Miss ratio",
stroke: "Eviction algorithm",
tip: true,
marker: "circle"
})
]
})