SciPy

This is documentation for an old release of SciPy (version 1.4.1). Read this page in the documentation of the latest stable release (version 1.15.1).

Exponentiated Weibull Distribution

Two positive shape parameters \(a,c>0\), and the support is \(x\in\left[0,\infty\right)\).

\begin{eqnarray*} f\left(x;a,c\right) & = & ac\left[1-\exp\left(-x^{c}\right)\right]^{a-1}\exp\left(-x^{c}\right)x^{c-1}\\ F\left(x;a,c\right) & = & \left[1-\exp\left(-x^{c}\right)\right]^{a}\\ G\left(q;a,c\right) & = & \left[-\log\left(1-q^{1/a}\right)\right]^{1/c}\end{eqnarray*}

Implementation: scipy.stats.exponweib

Previous topic

Exponential Distribution

Next topic

Exponential Power Distribution