本文簡要介紹 python 語言中 numpy.random.Generator.chisquare
的用法。
用法:
random.Generator.chisquare(df, size=None)
從卡方分布中抽取樣本。
當每個具有標準正態分布(均值 0,方差 1)的 df 獨立隨機變量被平方和求和時,得到的分布是卡方的(見注釋)。這種分布通常用於假設檢驗。
- 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.default_rng().chisquare(2,4) array([ 1.89920014, 9.00867716, 3.13710533, 5.62318272]) # random
相關用法
- Python numpy Generator.choice用法及代碼示例
- Python numpy Generator.multivariate_normal用法及代碼示例
- Python numpy Generator.standard_normal用法及代碼示例
- Python numpy Generator.bytes用法及代碼示例
- Python numpy Generator.shuffle用法及代碼示例
- Python numpy Generator.random用法及代碼示例
- Python numpy Generator.logseries用法及代碼示例
- Python numpy Generator.uniform用法及代碼示例
- Python numpy Generator.standard_t用法及代碼示例
- Python numpy Generator.standard_cauchy用法及代碼示例
- Python numpy Generator.normal用法及代碼示例
- Python numpy Generator.poisson用法及代碼示例
- Python numpy Generator.power用法及代碼示例
- Python numpy Generator.geometric用法及代碼示例
- Python numpy Generator.laplace用法及代碼示例
- Python numpy Generator.vonmises用法及代碼示例
- Python numpy Generator.noncentral_f用法及代碼示例
- Python numpy Generator.gamma用法及代碼示例
- Python numpy Generator.multivariate_hypergeometric用法及代碼示例
- Python numpy Generator.weibull用法及代碼示例
- Python numpy Generator.gumbel用法及代碼示例
- Python numpy Generator.pareto用法及代碼示例
- Python numpy Generator.noncentral_chisquare用法及代碼示例
- Python numpy Generator.negative_binomial用法及代碼示例
- Python numpy Generator.binomial用法及代碼示例
注:本文由純淨天空篩選整理自numpy.org大神的英文原創作品 numpy.random.Generator.chisquare。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。