{
console.log(symbols)
let svg = d3.create('svg').attr('width', 1000)
svg.selectAll('path')
.data(symbols)
.enter()
.append('path')
.attr('d', d => symbol.type(d)())
.attr('fill', (d, i) => d3.schemePaired[i])
.attr('transform', (d, i) => `translate(${i * 140 + 50}, 80)`)
return svg.node();
}