numpy.random.standard_gamma()
  • References/Python/NumPy/Routines/Random sampling

numpy.random.standard_gamma(shape, size=None) Draw samples from a standard Gamma distribution. Samples are

2025-01-10 15:47:30
RandomState.rayleigh()
  • References/Python/NumPy/Routines/Random sampling

RandomState.rayleigh(scale=1.0, size=None) Draw samples from a Rayleigh distribution. The

2025-01-10 15:47:30
numpy.random.get_state()
  • References/Python/NumPy/Routines/Random sampling

numpy.random.get_state() Return a tuple representing the internal state of the generator. For more details, see

2025-01-10 15:47:30
RandomState.random_integers()
  • References/Python/NumPy/Routines/Random sampling

RandomState.random_integers(low, high=None, size=None) Random integers of type np.int between low

2025-01-10 15:47:30
numpy.random.standard_exponential()
  • References/Python/NumPy/Routines/Random sampling

numpy.random.standard_exponential(size=None) Draw samples from the standard exponential distribution.

2025-01-10 15:47:30
numpy.random.geometric()
  • References/Python/NumPy/Routines/Random sampling

numpy.random.geometric(p, size=None) Draw samples from the geometric distribution. Bernoulli trials are experiments

2025-01-10 15:47:30
RandomState.choice()
  • References/Python/NumPy/Routines/Random sampling

RandomState.choice(a, size=None, replace=True, p=None) Generates a random sample from a given 1-D array

2025-01-10 15:47:30
numpy.random.logseries()
  • References/Python/NumPy/Routines/Random sampling

numpy.random.logseries(p, size=None) Draw samples from a logarithmic series distribution. Samples are drawn from

2025-01-10 15:47:30
RandomState.logseries()
  • References/Python/NumPy/Routines/Random sampling

RandomState.logseries(p, size=None) Draw samples from a logarithmic series distribution. Samples are

2025-01-10 15:47:30
numpy.random.hypergeometric()
  • References/Python/NumPy/Routines/Random sampling

numpy.random.hypergeometric(ngood, nbad, nsample, size=None) Draw samples from a Hypergeometric distribution.

2025-01-10 15:47:30