S18 - HW 3 - Bar Chart
CS 725/825 - Spring 2018 - Homework 3 - Bar Chart
** Modified README.md by dralph **
Q1. What is the type of mark used in the bar chart?
The mark for the bar chart is a Line.
Q2. List the channels, the attribute they are mapped to, and the data type of that attribute.
- Length which maps to the frequency attribute (numerical/quantitative).
- Position on the x axis which maps to the letter attribute (label/categorical).
Q3. After your changes, list the channels, the attribute they are mapped to, and the data type of that attribute.
These channels remain the same:
- Length which maps to the frequency attribute (numerical/quantitative).
- Position on the x axis which maps to the letter attribute (label/categorical).
Added:
- Hue channel which maps to the letter attribute (label/categorical).
Hue/Color Assignments:
- "#1b70fc"--> A
- "#faff16"--> B
- "#d50527"--> C
- "#158940"--> D
- "#f898fd"--> E
- "#24c9d7"--> F
- "#cb9b64"--> G
- "#866888"--> H
- "#22e67a"--> I
- "#e509ae"--> J
- "#9dabfa"--> K
- "#437e8a"--> L
- "#b21bff"--> M
- "#ff7b91"--> N
- "#94aa05"--> O
- "#ac5906"--> P
- "#82a68d"--> Q
- "#fe6616"--> R
- "#7a7352"--> S
- "#f9bc0f"--> T
- "#b65d66"--> U
- "#07a2e6"--> V
- "#c091ae"--> W
- "#8a91a7"--> X
- "#88fc07"--> Y
- "#ea42fe"--> Z
Q4. After your changes, list the channels, the attribute they are mapped to, and the data type of that attribute. List all of the channels mapped to the frequency attribute.
These channels remain the same:
- Length which maps to the frequency attribute (numerical/quantitative).
- Position on the x axis which maps to the letter attribute (label/categorical).
Added:
- Color saturation channel (magnitude/ordered data) which maps to the frequency attribute (numerical/quantitative).
Channels that map to frequency:
- Length which maps to the frequency attribute (numerical/quantitative).
- Color saturation channel (magnitude/ordered data) which maps to the frequency attribute (numerical/quantitative).
References:
- https://jnnnnn.blogspot.com.au/2017/02/distinct-colours-2.html
- https://bl.ocks.org/d3indepth/fabe4d1adbf658c0b73c74d3ea36d465
- https://stackoverflow.com/questions/35186840/add-different-colors-to-each-bar-in-d3
- /weiglemc/6185069
- https://bl.ocks.org/enjalot/7c0fe907ba2010fed420
- https://github.com/d3/d3-color
forked from mbostock's block: Bar Chart
forked from weiglemc's block: S18 - HW 3 - Bar Chart