graph = {
const HEIGHT = width / 2
const c = DOM.svg(width, HEIGHT)
const svg = d3.select(c)
const xScale = d3.scaleLinear().domain(d3.extent(DATA.map(d => d.m))).range([0, width])
const yScale = d3.scaleLinear().domain(d3.extent(DATA.map(d => d.p))).range([0, HEIGHT])
const circles = svg.selectAll('circle')
.data(DATA)
.enter().append('circle')
.attr('r', 20)
.attr('cy', d => xScale(d.p))
.attr('cx', d => xScale(d.m))
.on('click', d => )
return c
}