scipy.stats.genhalflogistic#

scipy.stats.genhalflogistic = <scipy.stats._continuous_distns.genhalflogistic_gen object>[源码]#

广义半 logistic 连续随机变量。

作为 rv_continuous 类的实例,genhalflogistic 对象从它那里继承了一组通用的方法(有关完整列表,请参阅以下内容),并用此特定分布的详细信息对其进行补充。

备注

genhalflogistic 的概率密度函数为

\[f(x, c) = \frac{2 (1 - c x)^{1/(c-1)}}{[1 + (1 - c x)^{1/c}]^2}\]

对于 \(0 \le x \le 1/c\)\(c > 0\)

genhalflogisticc 作为 \(c\) 的形状参数。

上述的概率密度以“标准化”形式定义。要平移和/或缩放分布,请使用 locscale 参数。具体来说, genhalflogistic.pdf(x, c, loc, scale) 完全等同于 genhalflogistic.pdf(y, c) / scale,其中 y = (x - loc) / scale。请注意,平移分布的位置不会使之成为“非中心”分布;某些分布的非中心普遍化在单独的类中提供。

示例

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

计算前四个矩

>>> c = 0.773
>>> mean, var, skew, kurt = genhalflogistic.stats(c, moments='mvsk')

显示概率密度函数 (pdf)

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

或者,可以调用分布对象(作为函数)来修复形状、位置和比例参数。这会返回一个“冻结”的 RV 对象,该对象固定了给定的参数。

冻结分布并显示冻结的 pdf

>>> rv = genhalflogistic(c)
>>> ax.plot(x, rv.pdf(x), 'k-', lw=2, label='frozen pdf')

检查 cdfppf 的准确性

>>> vals = genhalflogistic.ppf([0.001, 0.5, 0.999], c)
>>> np.allclose([0.001, 0.5, 0.999], genhalflogistic.cdf(vals, c))
True

生成随机数

>>> r = genhalflogistic.rvs(c, 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-genhalflogistic-1.png

方法

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

随机变量。

pdf(x, c, loc=0, scale=1)

概率密度函数。

logpdf(x, c, loc=0, scale=1)

概率密度函数的对数。

cdf(x, c, loc=0, scale=1)

累积分布函数。

logcdf(x, c, loc=0, scale=1)

累积分布函数的对数。

sf(x, c, loc=0, scale=1)

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

logsf(x, c, loc=0, scale=1)

生存函数的对数。

ppf(q, c, loc=0, scale=1)

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

isf(q, c, loc=0, scale=1)

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

moment(order, c, loc=0, scale=1)

指定阶数的非中心矩。

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

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

entropy(c, loc=0, scale=1)

RV 的(差分)熵。

fit(data)

泛型数据的参数估计。有关关键字参数的详细文档,请参阅 scipy.stats.rv_continuous.fit

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

关于分布的一项函数(一个参数)的期望值。

median(c, loc=0, scale=1)

分布的中位数。

mean(c, loc=0, scale=1)

分布的平均值。

var(c, loc=0, scale=1)

分布的方差。

std(c, loc=0, scale=1)

分布的标准差。

interval(confidence, c, loc=0, scale=1)

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