File: continuous_gumbel_l.rst

package info (click to toggle)
python-scipy 1.1.0-7
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 93,828 kB
  • sloc: python: 156,854; ansic: 82,925; fortran: 80,777; cpp: 7,505; makefile: 427; sh: 294
file content (23 lines) | stat: -rw-r--r-- 671 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

.. _continuous-gumbel_l:

Gumbel Left-skewed (for minimum order statistic) Distribution
=============================================================

.. math::
   :nowrap:

    \begin{eqnarray*} f\left(x\right) & = & \exp\left(x-e^{x}\right)\\ F\left(x\right) & = & 1-\exp\left(-e^{x}\right)\\ G\left(q\right) & = & \log\left(-\log\left(1-q\right)\right)\end{eqnarray*}

.. math::

     M\left(t\right)=\Gamma\left(1+t\right)

Note, that :math:`\mu` is negative the mean for the right-skewed distribution. Similar for
median and mode. All other moments are the same.

.. math::

     h\left[X\right]\approx1.0608407169541684911.

Implementation: `scipy.stats.gumbel_l`