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

numpy.random.logistic(loc=0.0, scale=1.0, size=None) Draw samples from a logistic distribution. Samples are drawn

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

numpy.random.standard_t(df, size=None) Draw samples from a standard Student?s t distribution with df degrees

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

RandomState.tomaxint(size=None) Random integers between 0 and sys.maxint, inclusive. Return

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

numpy.random.beta(a, b, size=None) Draw samples from a Beta distribution. The Beta distribution is a special case

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

RandomState.geometric(p, size=None) Draw samples from the geometric distribution. Bernoulli trials

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

numpy.random.wald(mean, scale, size=None) Draw samples from a Wald, or inverse Gaussian, distribution. As the scale

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.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.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
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