File: continuous_mielke.rst

package info (click to toggle)
scipy 1.17.1-1exp2
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 237,744 kB
  • sloc: cpp: 529,262; python: 357,592; ansic: 215,620; javascript: 89,566; fortran: 19,308; cs: 3,095; f90: 1,159; sh: 860; makefile: 521; pascal: 284; lisp: 218; xml: 56; perl: 46
file content (16 lines) | stat: -rw-r--r-- 695 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

.. _continuous-mielke:

Mielke's Beta-Kappa Distribution
================================

A generalized F distribution. Two shape parameters
:math:`\kappa` and :math:`\theta`, with support :math:`x\geq0`.
The :math:`\beta` in the DATAPLOT reference is a scale parameter.

.. math::
   :nowrap:

    \begin{eqnarray*} f\left(x;\kappa,\theta\right) & = & \frac{\kappa x^{\kappa-1}}{\left(1+x^{\theta}\right)^{1+\frac{\kappa}{\theta}}}\\ F\left(x;\kappa,\theta\right) & = & \frac{x^{\kappa}}{\left(1+x^{\theta}\right)^{\kappa/\theta}}\\ G\left(q;\kappa,\theta\right) & = & \left(\frac{q^{\theta/\kappa}}{1-q^{\theta/\kappa}}\right)^{1/\theta}\end{eqnarray*}

Implementation: `scipy.stats.mielke`