Python - Data Science - Mean/Median/Mode
![Image](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiUvxV6gSYrfqUGRi4m6uASc9pTbA4XWrmc-L5CSn4FX1layEwCMB6qq3XqvYXnsu2_7B_89E9u49zP9zbLXK69D7qPLbqVsuQMX3Z5YC9qDPdRGP0tvOnE8f_uDjdSfEWD2JVr5IdtzEYDyzeLfUbVR-ojDLXjKl1JthS9S-sp3QBiVPVKcS0vwRu0/s320/Screenshot%202022-06-11%20180005.png)
What is a Mean? A mean is the simple mathematical average of a set of two or more numbers. Eg: The sum of the 57 Boys weight is 231.51 and hence the mean is 231.51/57 = 4.06 What is the Median? The median is the middle number in a sorted, ascending or descending, list of numbers and can be more descriptive of that data set than the average. For example, in a data set of {3, 13, 2, 34, 11, 26, 47}, the sorted order becomes {2, 3, 11, 13, 26, 34, 47}. The median is the number in the middle {2, 3, 11, 13, 26, 34, 47}, which in this instance is 13 since there are three numbers on either side. For example, in a data set of {3, 13, 2, 34, 11, 17, 27, 47}, the sorted order becomes {2, 3, 11, 13, 17, 27, 34, 47}. The median is the average of the two numbers in the middle which in this case is fifteen {2, 3, 11, 13, 17, 27, 34, 47} -> {(13 + 17) ÷ 2 = 15}. What is a Mode? The is the most frequent observation (or observations) in a sample. We have the sample [4, 1, 2, 2, 3, 5]...