This code calculates the expected value of the entropy of a uniformly distributed sample of size N over
from average_entropy import avg_entropy
Example where we are interested in the expected value of the entropy of a random uniformly distributed sample of size 6 over 20 bins.
e = avg_entropy(6, 20)
print(e)