I want to find the mode of a dataset where the numbers are close, but not exact. For example let's say I have the following array:
[0.00, 100.12, 101.00, 99.75, 97.5, 102.4, 36.34, 103.11, 100.20, 75.0]
I want to get a number around 100 out of this array. I could just take the average, but I don't want 0.00, 36.34 and 75.00 spoil the rest of the numbers.
Another way to phrase this is I want the average of the values, excluding the ones that aren't close to the others.
Thanks!
