method
random.Generator.
beta
Draw samples from a Beta distribution.
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.
Alpha, positive (>0).
Beta, positive (>0).
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.
(m, n, k)
m * n * k
None
a
b
np.broadcast(a, b).size
Drawn samples from the parameterized beta distribution.