Median
Median is the middle element of the dataset if its sorted.
- I.E. if the dataset is [2, 3, 4, 100, 3]
Then after sorting it is [2, 3, 3, 4, 100]
So the median is 3 - For even number of points the median is the mean of two mid points
Median is the middle element of the dataset if its sorted.