## measurements-of-scale
References
- Nominal, Ordinal, Interval, and Ratio Scales (Statistics by Jim)
- Scales of Measurement (Byju's Learning)
- Level of Measurement (Wikipedia)
- What is a Distribution in Statistics? (365 Data Science)
A good understanding of measurements of scale (MoS) is essential in both metric design as well as conducting analytics in order to avoid misapplying mathematical operations to the wrong input type leading to misleading or incorrect inferences. References are provided above, so I leave the reader to … well, read. What I’d like to focus on are some specific characteristics about these scales.
I briefly discussed central tendency and statistical dispersion (distribution) here. The referenced material mentions appripriate measures of central tendency and dispersion. One way to appreciate why there is a need to pay attention to such prescription is to approach the treatment of MoS from an interpretive perspective: especially as it pertains to what is and isn’t said about a particular measurement type.
To begin, we’ll first consider nominal and ordinal measurements:
| Type | Indicates | Doesn't Indicate |
|---|---|---|
| Nominal | What is and is not | Intrinsic value, uniqueness |
| Ordinal | Order, relative position | Distance between positions; intrinsic value at each position |
In both contexts, one should separate syntax from semantics; that is to say, the symbolic representation of a word (letters, symbols, etc.) as differentiated from the meaning behind the words. What does this differentiation look like? One example can be found with numerals. Numerals are not numbers but are used to represent the meaning of what a number is.
-
With a nominal scale, the set of symbols
\(\{1, 2, 3, 9, 10\}\)should be treated as no more than names or labels attached to something that has non-numeric meaning. The sentence, “I named my cats 1, 3, and 10” is an example of such a use case. Quantitatively, you can execute frequency counts as a first-order operation (by which I mean operating on the raw values directly). -
With an ordinal scale, the set of symbols
\(\{1, 2, 3, 4, 5\}\)indicate order, but it would be invalid to attempt the first-order operation\(2 + 10\)under this context. One could easily replace the symbolic set with\(\{\text{first}, \text{second}, \text{third}, \text{fourth}, \text{fifth}\}\). It should be obvious that attemping\(\text{second} + \text{fifth}\)would be absurd. -
Another thing to note is that ordinal scales map nominal elements to positions. In the table provided earlier, the labels “Nominal” and “Ordinal” are nominal. The order of appearance of “Nominal” and “Ordinal” is ordinal.
For nominal and (especially) ordinal scales, there is often antecedent background information that implicitly governs how values in the real world are mapped to measurements on a scale. For example, consider the qualifying decisions that are first made in determining how movies in a series are mapped to the ordinal scale \(\{\text{awful}, \text{meh}, \text{awesome}\}\). Ordinal scales provide no prima facie information about such decisions.
More can (and will) be said regarding the semantics of data, but for now, I’ll end things here and address interval and ratio MoS in a subsequent post.
10, 1, and 3 in order of increasing age
Until next time, I wish you much success in your journey as a data practitioner!