aws-blog-lambda-map-reduce-streaming/scatter.html [89:99]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// Create Circles
svg.selectAll("circle")
.data(dataset)
.enter()
.append("circle") // Add circle svg
.attr("cx", function(d) {
return xScale(d[0]); // Circle's X
})
.attr("cy", function(d) { // Circle's Y
return yScale(d[1]);
})
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
aws-blog-lambda-map-reduce-streaming/scatter.html [167:177]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// Create Circles
svg.selectAll("circle")
.data(dataset)
.enter()
.append("circle") // Add circle svg
.attr("cx", function(d) {
return xScale(d[0]); // Circle's X
})
.attr("cy", function(d) { // Circle's Y
return yScale(d[1]);
})
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -