scipy.stats.gausshyper#

scipy.stats.gausshyper = <scipy.stats._continuous_distns.gausshyper_gen object>[源代码]#

高斯超几何连续随机变量。

作为 rv_continuous 类的一个实例,gausshyper 对象继承了它的一系列通用方法(完整列表见下文),并根据此特定分布的细节对其进行了补充。

方法

rvs(a, b, c, z, loc=0, scale=1, size=1, random_state=None)

随机变量。

pdf(x, a, b, c, z, loc=0, scale=1)

概率密度函数。

logpdf(x, a, b, c, z, loc=0, scale=1)

概率密度函数的对数。

cdf(x, a, b, c, z, loc=0, scale=1)

累积分布函数。

logcdf(x, a, b, c, z, loc=0, scale=1)

累积分布函数的对数。

sf(x, a, b, c, z, loc=0, scale=1)

生存函数 (也定义为 1 - cdf,但 sf 有时更精确)。

logsf(x, a, b, c, z, loc=0, scale=1)

生存函数的对数。

ppf(q, a, b, c, z, loc=0, scale=1)

百分点函数(cdf 的逆函数 — 百分位数)。

isf(q, a, b, c, z, loc=0, scale=1)

逆生存函数(sf 的逆函数)。

moment(order, a, b, c, z, loc=0, scale=1)

指定阶数的非中心矩。

stats(a, b, c, z, loc=0, scale=1, moments=’mv’)

均值(‘m’)、方差(‘v’)、偏度(‘s’) 和/或 峰度(‘k’)。

entropy(a, b, c, z, loc=0, scale=1)

(微分)随机变量的熵。

fit(data)

通用数据的参数估计。有关关键字参数的详细文档,请参见 scipy.stats.rv_continuous.fit

expect(func, args=(a, b, c, z), loc=0, scale=1, lb=None, ub=None, conditional=False, **kwds)

函数(单参数)相对于分布的期望值。

median(a, b, c, z, loc=0, scale=1)

分布的中位数。

mean(a, b, c, z, loc=0, scale=1)

分布的均值。

var(a, b, c, z, loc=0, scale=1)

分布的方差。

std(a, b, c, z, loc=0, scale=1)

分布的标准差。

interval(confidence, a, b, c, z, loc=0, scale=1)

在中位数周围等面积的置信区间。

注释

gausshyper 的概率密度函数为:

\[f(x, a, b, c, z) = C x^{a-1} (1-x)^{b-1} (1+zx)^{-c}\]

对于 \(0 \le x \le 1\)\(a,b > 0\)\(c\) 为实数, \(z > -1\),以及 \(C = \frac{1}{B(a, b) F[2, 1](c, a; a+b; -z)}\)\(F[2, 1]\) 是高斯超几何函数 scipy.special.hyp2f1

gausshyper 接受 \(a\), \(b\), \(c\)\(z\) 作为形状参数。

上述概率密度是以“标准化”形式定义的。要移动和/或缩放分布,请使用 locscale 参数。具体来说,gausshyper.pdf(x, a, b, c, z, loc, scale) 完全等价于 gausshyper.pdf(y, a, b, c, z) / scale,其中 y = (x - loc) / scale。请注意,移动分布的位置并不会使其成为“非中心”分布;某些分布的非中心推广可在单独的类中获得。

参考文献

[1]

Armero, C., 和 M. J. Bayarri. “队列预测中的先验评估。” 皇家统计学会杂志. D辑 (统计学家) 43, 第1期 (1994): 139-53. doi:10.2307/2348939

示例

>>> import numpy as np
>>> from scipy.stats import gausshyper
>>> import matplotlib.pyplot as plt
>>> fig, ax = plt.subplots(1, 1)

计算前四个矩:

>>> a, b, c, z = 13.8, 3.12, 2.51, 5.18
>>> mean, var, skew, kurt = gausshyper.stats(a, b, c, z, moments='mvsk')

显示概率密度函数 (pdf):

>>> x = np.linspace(gausshyper.ppf(0.01, a, b, c, z),
...                 gausshyper.ppf(0.99, a, b, c, z), 100)
>>> ax.plot(x, gausshyper.pdf(x, a, b, c, z),
...        'r-', lw=5, alpha=0.6, label='gausshyper pdf')

或者,分布对象可以被调用(作为一个函数)来固定形状、位置和尺度参数。这将返回一个持有给定参数固定的“冻结”RV对象。

冻结分发并显示冻结的 pdf

>>> rv = gausshyper(a, b, c, z)
>>> ax.plot(x, rv.pdf(x), 'k-', lw=2, label='frozen pdf')

检查 cdfppf 的准确性:

>>> vals = gausshyper.ppf([0.001, 0.5, 0.999], a, b, c, z)
>>> np.allclose([0.001, 0.5, 0.999], gausshyper.cdf(vals, a, b, c, z))
True

生成随机数:

>>> r = gausshyper.rvs(a, b, c, z, size=1000)

并比较直方图:

>>> ax.hist(r, density=True, bins='auto', histtype='stepfilled', alpha=0.2)
>>> ax.set_xlim([x[0], x[-1]])
>>> ax.legend(loc='best', frameon=False)
>>> plt.show()
../../_images/scipy-stats-gausshyper-1.png