RandomState.seed(seed=None) Seed the generator. This method is called when
numpy.random.uniform(low=0.0, high=1.0, size=None) Draw samples from a uniform distribution. Samples are uniformly
numpy.random.normal(loc=0.0, scale=1.0, size=None) Draw random samples from a normal (Gaussian) distribution. The
RandomState.rand(d0, d1, ..., dn) Random values in a given shape. Create an array of the given shape and
RandomState.permutation(x) Randomly permute a sequence, or return a permuted range. If x
numpy.random.bytes(length) Return random bytes.
numpy.random.multinomial(n, pvals, size=None) Draw samples from a multinomial distribution. The multinomial
numpy.random.lognormal(mean=0.0, sigma=1.0, size=None) Draw samples from a log-normal distribution. Draw samples
numpy.random.poisson(lam=1.0, size=None) Draw samples from a Poisson distribution. The Poisson distribution is
Page 10 of 10