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.

A classic example of why median beats mean for skewed data: a street with nine houses worth 20 lakhs and one mansion worth 5 crores has a mean far higher than what any typical house on that street actually costs - the median tells a much more honest story.

Coming Up Next

Next, you'll look at the second business moment decision - measures of dispersion, or how spread out the data is.

Ready to Master Data Science?

Join Uncodemy's Data Science Course and build real, job-ready skills with expert mentors.

Explore Course