Random Generator¶
Deprecated
Generator
is deprecated. You should be using numpy.random.Generator
.
The Generator
provides access to a wide range of distributions, and served as a replacement for RandomState
. The main difference between the two is that Generator
relies on an additional bit generator to manage state and generate the random bits which are then transformed into random values from useful distributions. The default bit generator used by Generator
is Xoroshiro128
. The bit generator can be changed by passing an instantized bit generator to Generator
.
- class randomgen.generator.Generator(bit_generator=None)¶
Random value generator using a bit generator source.
Generator
exposes methods for generating random numbers drawn from a variety of probability distributions. In addition to the distribution-specific arguments, each method takes a keyword argument size that defaults toNone
. If size isNone
, then a single value is generated and returned. If size is an integer, then a 1-D array filled with generated values is returned. If size is a tuple, then an array with that shape is filled and returned.No Compatibility Guarantee
Generator
is evolving and so it is not possible to provide a compatibility guarantee likeRandomState
. In particular, better algorithms have already been added and bugs that change the stream have been fixed. This will change onceGenerator
stabilizes.- Parameters
- bit_generatorBitGenerator, optional
Bit generator to use as the core generator. If none is provided, uses Xoroshiro128.
Notes
The Python stdlib module random contains pseudo-random number generator with a number of methods that are similar to the ones available in
Generator
. It uses Mersenne Twister, which is available by using theMT19937
bit generator.Generator
, besides being NumPy-aware, has the advantage that it provides a much larger number of probability distributions from which to choose.Examples
>>> from randomgen import Generator >>> rg = Generator() >>> rg.standard_normal() -0.203 # random
Using a specific generator
>>> from randomgen import MT19937 >>> rg = Generator(MT19937()) >>> rg.standard_normal() -0.203 # random
Seed and State Manipulation¶
Reseed the bit generator. | |
Get or set the bit generator's state | |
Gets the bit generator instance used by the generator |
Simple random data¶
| Random values in a given shape. |
| Return a sample (or samples) from the "standard normal" distribution. |
| Return random integers from low (inclusive) to high (exclusive), or if endpoint=True, low (inclusive) to high (inclusive). |
| Return random floats in the half-open interval [0.0, 1.0). |
choice(a, size=None, replace=True, p=None, axis=0, shuffle=True): | |
| Return random bytes. |
| Return random unsigned integers |
Permutations¶
| Modify an array or a mutable 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 random samples from a complex normal (Gaussian) 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 with df 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. |