Class RandomDistribution.Zipf

java.lang.Object
org.apache.hadoop.hbase.util.RandomDistribution.Zipf
All Implemented Interfaces:
RandomDistribution.DiscreteRNG
Enclosing class:
RandomDistribution

public static final class RandomDistribution.Zipf extends Object implements RandomDistribution.DiscreteRNG
Zipf distribution. The ratio of the probabilities of integer i and j is defined as follows: P(i)/P(j)=((j-min+1)/(i-min+1))^sigma.