Plot.plot({
marks: [
Plot.line(wobbly, { x: "x", y: "y", stroke: "steelblue", curve: "catmull-rom" }),
Plot.dot(wobbly, { x: "x", y: "y", r: 3, fill: "white", stroke: "steelblue" }),
],
x: { axis: false, type: "linear", domain: [-1, Math.pow(2, order) + 1] },
y: { axis: false, type: "linear", domain: [-1, Math.pow(2, order) + 1] },
marginLeft: 30,
marginTop: 20,
marginBottom: 20,
marginRight: 20,
width: 650,
height: 650
})