md` - Discrete domain and continuous numeric range: (position of bar, position of Points)
- d3.**scaleBand**(): used for position of the bars in Bar plot with Categorical data or discrete dates. Range is in quantitative domain.
- d3.**scalePoint**(): variant of scaleBand, used for scatterplots with an ordinal or categorical dimension. Range is in quantitative domain.
- Discrete domain and discrete range:
- d3.**scaleOrdinal**(): Used for categorical value to color, or to symbol. Domain and range are arrays.
`