I have 4 sets of data.
All the data sets contain values where the lower the value, the better it is. (The time it took for an algorithm to run).
I need to find the best set, the worst set & the average set.
How do I find these?
I tried doing the best and worst set,
Find all averages, then the lowest average is the best set, and the highest average is the worst set. But I don't know if this is a correct way of calculating this.
Also I tried finding the average set,
I took the average of all averages, then compared all average values with it.
The one closest to it, I chose it as the average set.
Is my method wrong? What should I do?