numpy.random.beta(a, b, size=None) Draw samples from a Beta distribution. The Beta distribution is a special case
RandomState.logistic(loc=0.0, scale=1.0, size=None) Draw samples from a logistic distribution. Samples
numpy.random.logistic(loc=0.0, scale=1.0, size=None) Draw samples from a logistic distribution. Samples are drawn
RandomState.gamma(shape, scale=1.0, size=None) Draw samples from a Gamma distribution. Samples are drawn
RandomState.poisson(lam=1.0, size=None) Draw samples from a Poisson distribution. The Poisson distribution
RandomState.hypergeometric(ngood, nbad, nsample, size=None) Draw samples from a Hypergeometric distribution
numpy.random.standard_normal(size=None) Draw samples from a standard Normal distribution (mean=0, stdev=1).
numpy.random.set_state(state) Set the internal state of the generator from a tuple. For use if one has reason
RandomState.tomaxint(size=None) Random integers between 0 and sys.maxint, inclusive. Return
RandomState.random_sample(size=None) Return random floats in the half-open interval [0.0, 1.0). Results
Page 1 of 10