method
random.RandomState.
triangular
Draw samples from the triangular distribution over the interval [left, right].
[left, right]
The triangular distribution is a continuous probability distribution with lower limit left, peak at mode, and upper limit right. Unlike the other distributions, these parameters directly define the shape of the pdf.
Note
New code should use the triangular method of a default_rng() instance instead; please see the Quick Start.
default_rng()
Lower limit.
The value where the peak of the distribution occurs. The value must fulfill the condition left <= mode <= right.
left <= mode <= right
Upper limit, must be larger than left.
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 left, mode, and right are all scalars. Otherwise, np.broadcast(left, mode, right).size samples are drawn.
(m, n, k)
m * n * k
None
left
mode
right
np.broadcast(left, mode, right).size
Drawn samples from the parameterized triangular distribution.
See also
Generator.triangular
which should be used for new code.
Notes
The probability density function for the triangular distribution is
The triangular distribution is often used in ill-defined problems where the underlying distribution is not known, but some knowledge of the limits and mode exists. Often it is used in simulations.
References
Wikipedia, “Triangular distribution” https://en.wikipedia.org/wiki/Triangular_distribution
Examples
Draw values from the distribution and plot the histogram:
>>> import matplotlib.pyplot as plt >>> h = plt.hist(np.random.triangular(-3, 0, 8, 100000), bins=200, ... density=True) >>> plt.show()