File: continuous_dweibull.rst

package info (click to toggle)
scipy 1.6.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 132,464 kB
  • sloc: python: 207,830; ansic: 92,105; fortran: 76,906; cpp: 68,145; javascript: 32,742; makefile: 422; pascal: 421; sh: 158
file content (42 lines) | stat: -rwxr-xr-x 1,331 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42

.. _continuous-dweibull:

Double Weibull Distribution
===========================

This is a signed form of the Weibull distribution. There is one shape parameter :math:`c>0`.  Support is :math:`x\in\mathbb{R}`.

.. math::
   :nowrap:

    \begin{eqnarray*} f\left(x;c\right) & = & \frac{c}{2}\left|x\right|^{c-1}\exp\left(-\left|x\right|^{c}\right)\\
    F\left(x;c\right) & = & \left\{
        \begin{array}{ccc}
          \frac{1}{2}\exp\left(-\left|x\right|^{c}\right) &  & x\leq0\\
          1-\frac{1}{2}\exp\left(-\left|x\right|^{c}\right) &  & x>0
        \end{array}
        \right.\\
    G\left(q;c\right) & = & \left\{
        \begin{array}{ccc}
          -\log^{1/c}\left(\frac{1}{2q}\right) &  & q\leq\frac{1}{2}\\
          \log^{1/c}\left(\frac{1}{2q-1}\right) &  & q>\frac{1}{2}
        \end{array}
       \right.\end{eqnarray*}

.. math::

    \mu_{n}^{\prime}=\mu_{n}=\begin{cases}
      \Gamma\left(1+\frac{n}{c}\right) & n\text{ even}\\
      0 & n\text{ odd}
    \end{cases}

.. math::
   :nowrap:

    \begin{eqnarray*} m_{n}=\mu & = & 0\\
    \mu_{2} & = & \Gamma\left(\frac{c+2}{c}\right)\\
    \gamma_{1} & = & 0\\
    \gamma_{2} & = & \frac{\Gamma\left(1+\frac{4}{c}\right)}{\Gamma^{2}\left(1+\frac{2}{c}\right)}\\
    m_{d} & = & \text{NA bimodal}\end{eqnarray*}

Implementation: `scipy.stats.dweibull`