本文簡要介紹 python 語言中 numpy.random.chisquare
的用法。
用法:
random.chisquare(df, size=None)
從卡方分布中抽取樣本。
當每個具有標準正態分布(均值 0,方差 1)的 df 獨立隨機變量被平方和求和時,得到的分布是卡方的(見注釋)。這種分布通常用於假設檢驗。
注意
新代碼應改為使用
default_rng()
實例的chisquare
方法;請參閱快速入門。- df: 浮點數或類似數組的浮點數
自由度數,必須 > 0。
- size: int 或整數元組,可選
輸出形狀。例如,如果給定的形狀是
(m, n, k)
,則繪製m * n * k
樣本。如果 size 為None
(默認),如果df
是標量,則返回單個值。否則,將抽取np.array(df).size
樣本。
- out: ndarray 或標量
從參數化卡方分布中抽取樣本。
- ValueError
什麽時候df<= 0 或當不合適時
size
(例如:size=-1
) 給出。
參數:
返回:
拋出:
注意:
通過對 df 獨立、標準正態分布隨機變量的平方求和獲得的變量:
是卡方分布的,表示為
卡方分布的概率密度函數為
其中 是伽馬函數,
參考:
NIST “Engineering Statistics Handbook”https://www.itl.nist.gov/div898/handbook/eda/section3/eda3666.htm
1:
例子:
>>> np.random.chisquare(2,4) array([ 1.89920014, 9.00867716, 3.13710533, 5.62318272]) # random
相關用法
- Python numpy random.choice用法及代碼示例
- Python numpy random.mtrand.RandomState.wald用法及代碼示例
- Python numpy random.mtrand.RandomState.multivariate_normal用法及代碼示例
- Python numpy random.standard_exponential用法及代碼示例
- Python numpy random.mtrand.RandomState.gumbel用法及代碼示例
- Python numpy random.mtrand.RandomState.multinomial用法及代碼示例
- Python numpy random.rand用法及代碼示例
- Python numpy random.mtrand.RandomState.logistic用法及代碼示例
- Python numpy random.mtrand.RandomState.shuffle用法及代碼示例
- Python numpy random.triangular用法及代碼示例
- Python numpy random.noncentral_f用法及代碼示例
- Python numpy random.mtrand.RandomState.poisson用法及代碼示例
- Python numpy random.lognormal用法及代碼示例
- Python numpy random.mtrand.RandomState.seed用法及代碼示例
- Python numpy random.mtrand.RandomState.triangular用法及代碼示例
- Python numpy random.gumbel用法及代碼示例
- Python numpy random.mtrand.RandomState.weibull用法及代碼示例
- Python numpy random.shuffle用法及代碼示例
- Python numpy random.geometric用法及代碼示例
- Python numpy random.multinomial用法及代碼示例
- Python numpy random.logseries用法及代碼示例
- Python numpy random.mtrand.RandomState.rand用法及代碼示例
- Python numpy random.mtrand.RandomState.power用法及代碼示例
- Python numpy random.mtrand.RandomState.randint用法及代碼示例
- Python numpy random.mtrand.RandomState.choice用法及代碼示例
注:本文由純淨天空篩選整理自numpy.org大神的英文原創作品 numpy.random.chisquare。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。