manbee = {
var svg = d3.select(DOM.svg(width, height))
.attr("width", width+"px")
.attr("height", height+"px");
const x = d3.scaleLinear().range([20,width-20]).domain(d3.extent(bee))
const y = d3.scaleLinear().range([20,width-20]).domain(d3.extent(flower))
svg.selectAll("line.banana").data(relations).enter().append("line")
.attr("class","banana")
.attr("x1",d=>x(d[0]))
.attr("y1",height/3)
.attr("x2",d=>y(d[1]))
.attr("y2",height*2/3)
.style("stroke","black")
.style("stroke-width","1px")
svg.selectAll("circle.bee").data(bee).enter().append("circle")
.attr("class","bee")
.attr("cx",d=>x(d))
.attr("cy",height/3)
.attr("r", 10)
.style("fill", "Orange")
svg.selectAll("circle.flower").data(flower).enter().append("circle")
.attr("class","flower")
.attr("cx",d=>y(d))
.attr("cy",height*2/3)
.attr("r", 10)
.style("fill", "green")
yield svg.node();
}