var scaleRadius = d3.scaleLinear() .domain([d3.min(data, function(d) { return +d.views; }), d3.max(data, function(d) { return +d.views; })]) .range([5,18…A gentle introduction to D3: how to build a reusable bubble chart67816Déborah MesquitaLikhita PatraFollowJul 20, 2017 · 1 min readI did not understand this piece of code, can you please tell me whats happening here.Thank you