Plot.plot({
marks: [
Plot.line(points, { x: "x", y: "y", stroke: "#333" }),
Plot.dot(points, { x: "x", y: "y", r: 4, fill: "error" })
],
x: { axis: false, type: "point" },
y: { axis: false, type: "point" },
color: { legend: true, scheme: "bugn", type: "log", reverse: true },
marginLeft: 20,
marginTop: 20,
marginBottom: 20,
marginRight: 20,
width: 650,
height: 650
})