I collected data from an experiment. This data is basically a set of sequences. For instance:
seq 1: 1,3,4,4,5,4,5,4,...,5
seq 2: 3,4,1,5,7,8,9,4,...,7
seq 3: 2,3,2,3,2,3,2,2,...,3
...
seq N: 1,2,3,4,5,6,10,20,...,50
I would like to know if a given set is nearly uniformly distributed.
A naive way would be comparing the difference between the maximum and minimum values. If the difference is relatively small, this approach is okay (eg, like in seq 3). However, in the opposite case, this method fails since the numbers can grow linearly, logarithmically, or exponentially.