Using the exercise filesDownloading and installing D3

What is d3.js?

d3.select("greeting")
  .html("<h2>Hello</h2>);

d3.selectAll("ul li")
  .html("item");

d3.select("#graph")
  .append("svg")
    .attr("height", 100)
    .append("circle")
    .style("fill", "red")
    .attr("r", 40)
    .attr("cx", 50)
    .attr("cy", 50)

Data binding

<code> d3.json(“http://url.com”, function() {

// callback to process the data

} <code>