There are times when data needs to appear in the middle of a paragraph.
Like so:
On an average, it would appear that Musambi : and Watermelon : are both popular and consistent. While Dates : isn't very popular, it appears to be consistently consumed, so one can say that it has its loyal customer base.
d3.select("body")
.style("background-color", "black");
d3.selectAll("p")
.data([4, 8, 15, 16, 23, 42])
.style("font-size", function(d) { return d + "px"; });
d3.select("body").transition()
.style("background-color", "black");
#