{ } Raw JSON

bundles / numpy 2.4.4 / numpy / random / RandomState / beta

cython_function_or_method

numpy.random:RandomState.beta

Signature

def   beta ( a b size = None )

Summary

Draw samples from a Beta distribution.

Extended Summary

The Beta distribution is a special case of the Dirichlet distribution, and is related to the Gamma distribution. It has the probability distribution function

where the normalization, B, is the beta function,

It is often seen in Bayesian inference and order statistics.

Parameters

a : float or array_like of floats

Alpha, positive (>0).

b : float or array_like of floats

Beta, positive (>0).

size : int or tuple of ints, optional

Output shape. If the given shape is, e.g., (m, n, k), then m * n * k samples are drawn. If size is None (default), a single value is returned if a and b are both scalars. Otherwise, np.broadcast(a, b).size samples are drawn.

Returns

out : ndarray or scalar

Drawn samples from the parameterized beta distribution.

See also

random.Generator.beta

which should be used for new code.

Aliases

  • numpy.random.beta
  • numpy.random.RandomState.beta