Mean Median Mode
Learn all about Mean Median Mode in this comprehensive tutorial.
- •What can we learn from looking at a group of numbers?
- •The mean value is the average value.
- •The median value is the value in the middle, after you have sorted all the values:
- •The Mode value is the value that appears the most number of times:
- •The Mean, Median, and Mode are techniques that are often used in Machine Learning, so it is important to understand the concept behind them.
Mean, Median, and Mode
What can we learn from looking at a group of numbers?
In Machine Learning (and in mathematics) there are often three values that interests us:
- **Mean** - The average value
- **Median** - The mid point value
- **Mode** - The most common value
Example: We have registered the speed of 13 cars:
What is the average, the middle, or the most common speed value?
Mean
The mean value is the average value.
To calculate the mean, find the sum of all values, and divide the sum by the number of values:
The NumPy module has a method for this. Learn about the NumPy module in our NumPy Tutorial.
Median
The median value is the value in the middle, after you have sorted all the values:
The NumPy module has a method for this:
Mode
The Mode value is the value that appears the most number of times:
The SciPy module has a method for this. Learn about the SciPy module in our SciPy Tutorial.
Chapter Summary
The Mean, Median, and Mode are techniques that are often used in Machine Learning, so it is important to understand the concept behind them.
Module quiz
2 questionsWhich of the following is true about Mean Median Mode?
What is the most common pitfall when working with Mean Median Mode?
Answer all questions to submit.