sketching

EDA:
-insights
-erroneous values
-structure
-yourself

Sketching:
-visual layout
-visual encodings
-others

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <script src="http://d3js.org/d3.v3.min.js"></script>
  <style></style>
  <script type="text/javascript">
  function draw(geo_data){
    "use strict";
    var margin = 75,
      width = 1920 - 75;
      height = 1000 - margin;

    var svg = d3.select("body")
      .append("svg")
      .attr("width",width + margin)
      .attr("height", height + margin)
      .append("g")
      .attr('class', 'map');
  };
  </head>
<body>
  <script type="text/javascript">
  /*
    Use D3 (not dimple.js) to load the TSV file
    and pass the contents of it to the draw function
    */
  d3.tsv("world_cup.tsv", draw);
  </script>
</body>
</html>