S18 - HW3 - Scatterplot
CS 725/825 - Spring 2018 - Homework 3 - Scatterplot
See the assignment instructions at http://www.cs.odu.edu/~mweigle/CS725-S18/HW3
Scatterplot of 2014 NCAA Passing Statistics
Data from http://www.sports-reference.com/cfb/years/2014-passing.html
Scatterplot based on /mbostock/3887118, tooltip example from http://www.d3noob.org/2013/01/adding-tooltips-to-d3js-graph.html
Built with blockbuilder.org
forked from weiglemc's block: S18 - HW3 - Scatterplot
Scatterplot
What is the type of mark used in the scatterplot?
- The type of mark used in the scatterplot is point.
List the channels, the attribute they are mapped to, and the data type of that attribute.
- The vertical spatial position channel is mapped to the passing touchdowns attribute. The passing touchdown attribute is a quantitative attribute.
- The horizontal spatial positon channel is mapped to the rushing touchdowns attribute. The rushing touchdown attribute is a quantitative attribute.
After your changes, list the channels, the attribute they are mapped to, and the data type of that attribute.
- The color hue channel is mapped to the 11 different college football conferences attribute. The conference attribute is a categorical attribute.
- The size channel is mapped to the passing yards per attemp (Y/A) attribute. The Y/A attribute is a quantitative attribute.
- The vertical spatial position channel is mapped to the passing touchdowns attribute. The passing touchdown attribute is a quantitative attribute.
- The horizontal spatial position channel is mapped to the rushing touchdowns attribute. The rushing touchdown attribute is a quantitative attribute.
References