vis = {
const el = html`<div style="width:${width}px;height:${width/2}px"></div>`
yield el
const vis = new candela.components.ScatterPlot(el, {
data: data,
x: 'Miles_per_Gallon',
y: 'Horsepower',
color: 'Cylinders',
colorType: 'ordinal'
});
vis.render();
return vis;
}