Plot.plot({
width: Math.min(640, width),
height: 300,
grid: true,
marks: [
Plot.ruleX([0]),
Plot.ruleY([0]),
Plot.line(tabulated, { x: "u", y: "y_0", stroke: "#c39" }),
Plot.line(tabulated, { x: "u", y: "y_1", stroke: "#9c3" }),
Plot.line(tabulated, { x: "u", y: "y_2", stroke: "#39c" })
]
})