Second Business Moment Decision
The second business moment decision refers to measures of dispersion - how spread out or scattered the values in a dataset are around the central value.
Range
The simplest measure - the difference between the maximum and minimum values.
import pandas as pd
scores = pd.Series([85, 92, 78, 90, 65])
print(scores.max() - scores.min()) # 27
Variance
The average of the squared differences between each value and the mean - it quantifies overall spread, though in squared units.
print(scores.var())
Standard Deviation
The square root of variance, bringing the measure back into the same unit as the original data - the most commonly used measure of spread.
print(scores.std())
Why Dispersion Matters
Two datasets can share the same mean but behave very differently. For example, two classes might both average 80% marks, but one class could have everyone scoring close to 80, while the other has scores ranging from 40 to 100. Central tendency alone can't reveal this difference - dispersion can.
Coming Up Next
Next, you'll look at the third business moment decision - skewness, which describes the shape of a distribution.