Weibull

class stats_arrays.WeibullUncertainty

Bases: stats_arrays.distributions.base.UncertaintyBase

The Weibull distribution has the probability distribution function:

\[f(x; k, \lambda) = \frac{k}{\lambda} \left( \frac{x}{\lambda} \right)^{k - 1} e^{- \left( x / \lambda \right)^{k}}\]

In our implementation, \(\lambda\) is scale, and \(k\) is shape. An optional location parameter, which offsets the distribution from the origin, can be specified in loc.

See https://en.wikipedia.org/wiki/Weibull_distribution.