First Business Moment Decision
In statistics, the first business moment decision refers to measures of central tendency - values that describe the "centre" or typical value of a dataset.
Mean
The arithmetic average of all values, calculated by summing them and dividing by the count.
import pandas as pd
scores = pd.Series([85, 92, 78, 90, 65])
print(scores.mean()) # 82.0
Median
The middle value when data is sorted in order - useful because it isn't affected much by extreme values (outliers).
print(scores.median()) # 85.0
Mode
The most frequently occurring value in the dataset - especially useful for categorical data.
grades = pd.Series(["A", "B", "A", "C", "A"])
print(grades.mode()) # A
Choosing the Right Measure
Mean works well for symmetric, outlier-free data. Median is more reliable when the data has extreme values, such as income data with a few very high earners. Mode is the only option that makes sense for purely categorical data.
Coming Up Next
Next, you'll look at the second business moment decision - measures of dispersion, or how spread out the data is.