View README.md

Node-link Diagram

I added a new attribute to the dataset which is region.

In the node-link diagram, states in the same region likely stick together as they have links in between.

States in region which has less number of links spread out in the diagram. For example: look at the light-green color (South Atlantic), Florida is far apart with those states (DC, Maryland, Virginia, West Viginia, Delaware).

Thus, although the dataset is non-spatial, users can explore the relationship of nodes by looking the distance or number of hops in between.

View data.csv
date close
1-May-12 58.13
30-Apr-12 53.98
27-Apr-12 67.00
26-Apr-12 89.70
25-Apr-12 99.00
24-Apr-12 130.28
23-Apr-12 166.70
20-Apr-12 234.98
19-Apr-12 345.44
View README.md

Rule of thumb

Overview first, zoom and filter, details on demand

Problem:

Solution:

  • Just give an overview of information (positions of Starbucks).
  • Users can get detail information by hovering mouse to the point of data.
View README.md

Rule of thumb

Overview first, zoom and filter, details on demand

Problem:

Solution:

  • Just give an overview of information (positions of Starbucks).
  • Users can get detail information by hovering mouse to the point of data.
View 1stq.js
var testData = [
{times: [{"starting_time": 1355752800000, "ending_time": 1355759900000}, {"starting_time": 1355769900000, "ending_time": 1355774400000}]},
{times: [{"starting_time": 1355752800000, "ending_time": 1355761900000}, {"starting_time": 1355767500000, "ending_time": 1355774400000}]},
{times: [{"starting_time": 1355752800000, "ending_time": 1355763910000}]},
];
var width = 500;
var chart = d3.timeline().showAxisTop().stack();
var svg = d3.select("#header1").append("svg").attr("width", width)
.datum(testData).call(chart);
View README.md

Student

  • Hung Do; CS725:Information Visualization; Spring 2016;
  • Computer Science; Old Dominion University

My notes:

Three things from D3:

  • Know how to use domain() and range() to scale.
  • Transition(), duration() make the visualization interactively.
  • D3 interacts with dataset very easily.
View README.md

Scott Murray Tutorial

Jerome Cukier's Tutorial

View README.md

Team Members: Srinivas Havanur Erika Siregar Hung Do Assignment: ICW2: Football data analysis

Course: Information Visualization

Semester: Spring 2016