numpy.random.noncentral_chisquare#

random.noncentral_chisquare(df, nonc, size=None)#

从非中心卡方分布中抽取样本。

非中心 \(\chi^2\) 分布是 \(\chi^2\) 分布的推广。

注意

新的代码应该使用 noncentral_chisquare 方法,该方法属于 Generator 实例;请参阅 快速入门

参数::
dffloat 或类似数组的浮点数

自由度,必须大于 0。

版本 1.10.0 中的更改: 早期的 NumPy 版本要求 dfnum > 1。

noncfloat 或类似数组的浮点数

非中心性,必须是非负数。

sizeint 或 int 元组,可选

输出形状。如果给定的形状为,例如,(m, n, k),那么将抽取 m * n * k 个样本。如果 size 为 None(默认),如果 dfnonc 都是标量,则返回单个值。否则,将抽取 np.broadcast(df, nonc).size 个样本。

返回值::
outndarray 或标量

从参数化的非中心卡方分布中抽取的样本。

另请参阅

random.Generator.noncentral_chisquare

应用于新代码。

注释

非中心卡方分布的概率密度函数为

\[P(x;df,nonc) = \sum^{\infty}_{i=0} \frac{e^{-nonc/2}(nonc/2)^{i}}{i!} P_{Y_{df+2i}}(x),\]

其中 \(Y_{q}\) 是自由度为 q 的卡方分布。

参考文献

[1]

维基百科,“非中心卡方分布” https://en.wikipedia.org/wiki/Noncentral_chi-squared_distribution

示例

从分布中抽取值并绘制直方图

>>> import matplotlib.pyplot as plt
>>> values = plt.hist(np.random.noncentral_chisquare(3, 20, 100000),
...                   bins=200, density=True)
>>> plt.show()
../../../_images/numpy-random-noncentral_chisquare-1_00_00.png

从非中心卡方分布中抽取值,其中非中心性非常小,并与卡方分布进行比较。

>>> plt.figure()
>>> values = plt.hist(np.random.noncentral_chisquare(3, .0000001, 100000),
...                   bins=np.arange(0., 25, .1), density=True)
>>> values2 = plt.hist(np.random.chisquare(3, 100000),
...                    bins=np.arange(0., 25, .1), density=True)
>>> plt.plot(values[1][0:-1], values[0]-values2[0], 'ob')
>>> plt.show()
../../../_images/numpy-random-noncentral_chisquare-1_01_00.png

演示非中心性较大的值如何导致更对称的分布。

>>> plt.figure()
>>> values = plt.hist(np.random.noncentral_chisquare(3, 20, 100000),
...                   bins=200, density=True)
>>> plt.show()
../../../_images/numpy-random-noncentral_chisquare-1_02_00.png