D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
IconicImagery
Full window
Github gist
Knight D3 Module 5 DRAFT: Lisa J. Ellwood
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Doctor Who Earth-Based Time Travel Adventures</title> <script type="text/javascript" src="https://d3js.org/d3.v3.js"></script> <style type="text/css"> body { background-color: white; font-family: Helvetica, Arial, sans-serif; } h1 { font-size: 20x; margin: 10px 0 0 0; } h2 { font-size: 18px; margin: 10px 0 0 0; } h3 { font-size: 16px; margin: 10px 0 0 0; } p { font-size: 14px; margin: 10px 0 0 0; } svg { background-color: #E0DED8; } circle:hover { fill: #A5D867; transition: fill 0.5s; } .axis path, .axis line { fill: none; stroke: black; shape-rendering: crispEdges; } .axis text { font-family: sans-serif; font-size: 11px; } </style> </head> <body> <h1>Doctor Who Earth-Based Time Travel Adventures</h1> <h2>(DW1) Hartnell through (DW11) Smith</h2> <h3>Time Jumps between 100 and 1000 years - By Episode. Adapted from: <a href="https://www.theguardian.com/news/datablog/2010/aug/20/doctor-who-time-travel-information-is-beautiful">Guardian Data Blog</a>, 2010</h3> <p>The premise of Doctor Who is that he is a Time Lord, capable of ridiculously epic travels throughout time and space - even if it is billions of years into the past or future and/or numerous time jumps in a single episode / story arc. </p> <p></p> <p>This dataset represents a fraction of his Earth-based Time Travel. The Time Jumps are the Sum of DateTo and DateFrom per the episode Date references themselves as scripted) ... the glory of Science Fiction!</p> <p></p> <script type="text/javascript"> //Set the dimensions of the SVG canvas / chart var w = 500; var h = 300; var padding = [ 20, 20, 50, 40 ]; //Top, right, bottom, left // Set the scale ranges var xScale = d3.scale.linear() .range([ padding[3], w - padding[1] - padding[3] ]); var yScale = d3.scale.linear() .range([ padding[0], h - padding[2] ]); // Define the axes var xAxis = d3.svg.axis() .scale(xScale) .orient("bottom") .ticks(9); var yAxis = d3.svg.axis() .scale(yScale) .orient("left") .tickFormat(function(d) { return d + "Time Jump Yrs"; }); // Add the svg canvas var svg = d3.select("body") .append("svg") .attr("width", w) .attr("height", h); //Load in contents of CSV file d3.csv("DW EARTH Time Journeys_000s_LE.csv", function(data) { //Now CSV contents have been transformed into an array of JSON objects. //Log 'data' to the console, for verification. console.log(data); // Scale the range of the data xScale.domain([ d3.min(data, function(d) { return +d.TimeJumpYrs; }), d3.max(data, function(d) { return +d.TimeJumpYrs }) ]); yScale.domain([ d3.max(data, function(d) { return +d.TimeJumpYrs; }), d3.min(data, function(d) { return +d.TimeJumpYrs; }) ]); // Add the scatterplot var circles = svg.selectAll("circle") .data(data) .enter() .append("circle"); circles.attr("cx", function(d) { return xScale(d.TimeJumpYrs); }) .attr("cy", function(d) { return yScale(d.TimeJumpYrs); }) .attr("r", 3) .attr("fill", "#AC98DB") // Add Tooltips to the scatterplot .append("title") .text(function(d) { return d.DWactor + "'s Total Time Jump in " + d.EpTitle + " episode is " + d.TimeJumpYrs + " years"; // Sort the scatterplot circles circles.sort(function(a, b) { return d3.ascending(+a.TimeJumpYrs, +b.TimeJumpYrs); }) // Set scatterplot transition & duration .transition() .delay(function(d, i) { return i * 50; }) .duration(2000) .attr("r", 3); // Add the X Axis svg.append("g") .attr("class", "x axis") .attr("transform", "translate(0," + (h - padding[3] + 2) + ")") .call(xAxis); // Add the y Axis svg.append("g") .attr("class", "y axis") .attr("transform", "translate(" + padding[3] + ",0)") .call(yAxis); }); }); </script> </body> </html>
Modified
http://d3js.org/d3.v3.js
to a secure url
https://d3js.org/d3.v3.js