{
let svg = viewof whiskeySour
d3.select(svg)
.selectAll('circle.data').data(whiskeySours).join('circle')
.attr('class', 'data')
.attr('cx', d => svg.R * projectX(svg.corners, d.composition))
.attr('cy', d => svg.R * projectY(svg.corners, d.composition))
.attr('r', 1)
.attr('stroke', '#fff')
.attr('fill', '#000')
.lower()
}