當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python dask.array.random.noncentral_chisquare用法及代碼示例


用法:

dask.array.random.noncentral_chisquare(df, nonc, size=None, chunks='auto', **kwargs)

從非中心卡方分布中抽取樣本。

此文檔字符串是從 numpy.random.mtrand.RandomState.noncentral_chisquare 複製而來的。

可能存在與 Dask 版本的一些不一致之處。

非中心 分布是 分布的泛化。

注意

新代碼應改為使用default_rng() 實例的noncentral_chisquare 方法;請參閱快速入門。

參數

df浮點數或類似數組的浮點數

自由度,必須 > 0。

nonc浮點數或類似數組的浮點數

非中心性,必須是非負的。

sizeint 或整數元組,可選

輸出形狀。例如,如果給定的形狀是 (m, n, k) ,則繪製 m * n * k 樣本。如果 size 為 None(默認),如果 dfnonc 都是標量,則返回單個值。否則,將抽取np.broadcast(df, nonc).size 樣本。

返回

outndarray 或標量

從參數化的非中心卡方分布中抽取樣本。

注意

非中心卡方分布的概率密度函數為

其中 是自由度為 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()

從具有非常小的非中心性的非中心卡方中提取值,並與卡方進行比較。

>>> 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()

證明非中心性的大值如何導致更對稱的分布。

>>> plt.figure()  
>>> values = plt.hist(np.random.noncentral_chisquare(3, 20, 100000),  
...                   bins=200, density=True)
>>> plt.show()

相關用法


注:本文由純淨天空篩選整理自dask.org大神的英文原創作品 dask.array.random.noncentral_chisquare。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。