Legacy random generation#
TheRandomState provides access tolegacy generators. This generator is considered frozen and will haveno further improvements. It is guaranteed to produce the same valuesas the final point release of NumPy v1.16. These all depend on Box-Mullernormals or inverse CDF exponentials or gammas. This class should only be usedif it is essential to have randoms that are identical to whatwould have been produced by previous versions of NumPy.
RandomState adds additional informationto the state which is required when using Box-Muller normals since theseare produced in pairs. It is important to useRandomState.get_state, and not the underlying bit generatorsstate, when accessing the state so that these extra values are saved.
Although we provide theMT19937 BitGenerator for use independent ofRandomState, note that its default seeding usesSeedSequencerather than the legacy seeding algorithm.RandomState will use thelegacy seeding algorithm. The methods to use the legacy seeding algorithm arecurrently private as the main reason to use them is just to implementRandomState. However, one can reset the state ofMT19937using the state of theRandomState:
fromnumpy.randomimportMT19937fromnumpy.randomimportRandomStaters=RandomState(12345)mt19937=MT19937()mt19937.state=rs.get_state()rs2=RandomState(mt19937)# Same outputrs.standard_normal()rs2.standard_normal()rs.random()rs2.random()rs.standard_exponential()rs2.standard_exponential()
- classnumpy.random.RandomState(seed=None)#
Container for the slow Mersenne Twister pseudo-random number generator.Consider using a different BitGenerator with the Generator containerinstead.
RandomStateandGeneratorexpose a number of methods for generatingrandom numbers drawn from a variety of probability distributions. Inaddition to the distribution-specific arguments, each method takes akeyword argumentsize that defaults toNone. Ifsize isNone,then a single value is generated and returned. Ifsize is an integer,then a 1-D array filled with generated values is returned. Ifsize is atuple, then an array with that shape is filled and returned.Compatibility Guarantee
A fixed bit generator using a fixed seed and a fixed series of calls to‘RandomState’ methods using the same parameters will always produce thesame results up to roundoff error except when the values were incorrect.
RandomStateis effectively frozen and will only receive updates thatare required by changes in the internals of Numpy. More substantialchanges, including algorithmic improvements, are reserved forGenerator.- Parameters:
- seed{None, int, array_like, BitGenerator}, optional
Random seed used to initialize the pseudo-random number generator oran instantized BitGenerator. If an integer or array, used as a seed forthe MT19937 BitGenerator. Values can be any integer between 0 and2**32 - 1 inclusive, an array (or other sequence) of such integers,or
None(the default). IfseedisNone, then theMT19937BitGenerator is initialized by reading data from/dev/urandom(or the Windows analogue) if available or seed from the clockotherwise.
Notes
The Python stdlib module “random” also contains a Mersenne Twisterpseudo-random number generator with a number of methods that are similarto the ones available in
RandomState.RandomState, besides beingNumPy-aware, has the advantage that it provides a much larger numberof probability distributions to choose from.
Seeding and state#
Simple random data#
| Random values in a given shape. |
| Return a sample (or samples) from the "standard normal" distribution. |
| Return random integers fromlow (inclusive) tohigh (exclusive). |
| Random integers of type |
| Return random floats in the half-open interval [0.0, 1.0). |
| Generates a random sample from a given 1-D array |
| Return random bytes. |
Permutations#
| Modify a sequence in-place by shuffling its contents. |
| Randomly permute a sequence, or return a permuted range. |
Distributions#
| Draw samples from a Beta distribution. |
| Draw samples from a binomial distribution. |
| Draw samples from a chi-square distribution. |
| Draw samples from the Dirichlet distribution. |
| Draw samples from an exponential distribution. |
| Draw samples from an F distribution. |
| Draw samples from a Gamma distribution. |
| Draw samples from the geometric distribution. |
| Draw samples from a Gumbel distribution. |
| Draw samples from a Hypergeometric distribution. |
| Draw samples from the Laplace or double exponential distribution with specified location (or mean) and scale (decay). |
| Draw samples from a logistic distribution. |
| Draw samples from a log-normal distribution. |
| Draw samples from a logarithmic series distribution. |
| Draw samples from a multinomial distribution. |
| Draw random samples from a multivariate normal distribution. |
| Draw samples from a negative binomial distribution. |
| Draw samples from a noncentral chi-square distribution. |
| Draw samples from the noncentral F distribution. |
| Draw random samples from a normal (Gaussian) distribution. |
| Draw samples from a Pareto II or Lomax distribution with specified shape. |
| Draw samples from a Poisson distribution. |
| Draws samples in [0, 1] from a power distribution with positive exponent a - 1. |
| Draw samples from a Rayleigh distribution. |
| Draw samples from a standard Cauchy distribution with mode = 0. |
| Draw samples from the standard exponential distribution. |
| Draw samples from a standard Gamma distribution. |
| Draw samples from a standard Normal distribution (mean=0, stdev=1). |
| Draw samples from a standard Student's t distribution withdf degrees of freedom. |
| Draw samples from the triangular distribution over the interval |
| Draw samples from a uniform distribution. |
| Draw samples from a von Mises distribution. |
| Draw samples from a Wald, or inverse Gaussian, distribution. |
| Draw samples from a Weibull distribution. |
| Draw samples from a Zipf distribution. |
Functions innumpy.random#
Many of the RandomState methods above are exported as functions innumpy.random This usage is discouraged, as it is implemented via a globalRandomState instance which is not advised on two counts:
It uses global state, which means results will change as the code changes
It uses a
RandomStaterather than the more modernGenerator.
For backward compatible legacy reasons, we will not change this.
| Draw samples from a Beta distribution. |
| Draw samples from a binomial distribution. |
| Return random bytes. |
| Draw samples from a chi-square distribution. |
| Generates a random sample from a given 1-D array |
| Draw samples from the Dirichlet distribution. |
| Draw samples from an exponential distribution. |
| Draw samples from an F distribution. |
| Draw samples from a Gamma distribution. |
| Draw samples from the geometric distribution. |
| Return a tuple representing the internal state of the generator. |
| Draw samples from a Gumbel distribution. |
| Draw samples from a Hypergeometric distribution. |
| Draw samples from the Laplace or double exponential distribution with specified location (or mean) and scale (decay). |
| Draw samples from a logistic distribution. |
| Draw samples from a log-normal distribution. |
| Draw samples from a logarithmic series distribution. |
| Draw samples from a multinomial distribution. |
| Draw random samples from a multivariate normal distribution. |
| Draw samples from a negative binomial distribution. |
| Draw samples from a noncentral chi-square distribution. |
| Draw samples from the noncentral F distribution. |
| Draw random samples from a normal (Gaussian) distribution. |
| Draw samples from a Pareto II or Lomax distribution with specified shape. |
| Randomly permute a sequence, or return a permuted range. |
| Draw samples from a Poisson distribution. |
| Draws samples in [0, 1] from a power distribution with positive exponent a - 1. |
| Random values in a given shape. |
| Return random integers fromlow (inclusive) tohigh (exclusive). |
| Return a sample (or samples) from the "standard normal" distribution. |
| Return random floats in the half-open interval [0.0, 1.0). |
| Random integers of type |
| Return random floats in the half-open interval [0.0, 1.0). |
| This is an alias of |
| Draw samples from a Rayleigh distribution. |
| This is an alias of |
| Reseed the singleton RandomState instance. |
| Set the internal state of the generator from a tuple. |
| Modify a sequence in-place by shuffling its contents. |
| Draw samples from a standard Cauchy distribution with mode = 0. |
| Draw samples from the standard exponential distribution. |
| Draw samples from a standard Gamma distribution. |
| Draw samples from a standard Normal distribution (mean=0, stdev=1). |
| Draw samples from a standard Student's t distribution withdf degrees of freedom. |
| Draw samples from the triangular distribution over the interval |
| Draw samples from a uniform distribution. |
| Draw samples from a von Mises distribution. |
| Draw samples from a Wald, or inverse Gaussian, distribution. |
| Draw samples from a Weibull distribution. |
| Draw samples from a Zipf distribution. |