md`
One thing I didn't understant, and one thing that many tutorials didn't touch upon, or worst, keep being misleading, is **What does D3 scale capture, or maintain?**.
[Using scales](http://jonathansoma.com/tutorials/d3/using-scales/) by Jonathan Soma is especially misleading, although I have to say [his tutorial](http://jonathansoma.com/tutorials/d3/) is the best I have ever seen online. Why did I say that his tuorial on D3 scales is misleading? It's because it doen't capture the real purpose of D3 scale.
For example, he used this example where dataset, or input, is [1, 2, 3, 4, 5, 50]. If our svg is only 120 pixels wide, then it's natural to come up with a good idea that the output range be [0, 100], this way, D3 will map input to output on a 1:2 scale.
1 will mapped to be 2, 2 to 4, 3 to 6, 4 to 8, 5 to 10, and 50 to 100. that is, the output will be [2, 4, 6, 8, 10, 100]. Nothing wrong, right?
It's not wrong. It's just misleading because it is a very special case.
`