{
const context = DOM.context2d(500, 500);
const line = d3
.line()
.x(d => 100 + 300 * d[0])
.y(d => 400 - 300 * d[1])
.context(context);
context.beginPath();
line(d3.zip(d3.quantize(t => t, 200), d3.quantize(scalek, 200)));
context.stroke();
return context.canvas;
}