本文簡要介紹 python 語言中 scipy.stats.binomtest
的用法。
用法:
scipy.stats.binomtest(k, n, p=0.5, alternative='two-sided')#
執行成功概率為 p 的測試。
二項式檢驗[1]是對原假設的檢驗,即伯努利實驗的成功概率為p.
測試的詳細信息可以在許多關於統計的文本中找到,例如 [2] 的第 24.5 節。
- k: int
成功次數。
- n: int
試驗次數。
- p: 浮點數,可選
假設的成功概率,即預期的成功比例。該值必須在區間
0 <= p <= 1
中。默認值為p = 0.5
。- alternative: {‘雙麵’,‘greater’, ‘less’},可選
表示備擇假設。默認值為“雙麵”。
- result:
BinomTestResult
實例 返回值是一個具有以下屬性的對象:
- k int
成功次數(從
binomtest
輸入複製)。- n int
試驗次數(從
binomtest
輸入複製)。- 選擇 str
指示
binomtest
的輸入中指定的備擇假設。它將是'two-sided'
、'greater'
或'less'
之一。- 統計 浮點數
成功率的估計。
- p值 浮點數
假設檢驗的 p 值。
該對象具有以下方法:
- proportion_ci(confidence_level=0.95,方法='精確'):
計算
statistic
的置信區間。
- result:
參數 ::
返回 ::
注意:
參考:
[2]Jerrold H. Zar,生物統計分析(第五版),Prentice Hall,上馬鞍河,新澤西州,美國(2010 年)
例子:
>>> from scipy.stats import binomtest
一家汽車製造商聲稱不超過 10% 的汽車不安全。 15輛汽車接受安全檢查,3輛被發現不安全。測試製造商的聲明:
>>> result = binomtest(3, n=15, p=0.1, alternative='greater') >>> result.pvalue 0.18406106910639114
無法在 5% 顯著性水平上拒絕原假設,因為返回的 p 值大於 5% 的臨界值。
檢驗統計量等於估計比例,即
3/15
:>>> result.statistic 0.2
我們可以使用結果的proportion_ci()方法來計算估計的置信區間:
>>> result.proportion_ci(confidence_level=0.95) ConfidenceInterval(low=0.05684686759024681, high=1.0)
相關用法
- Python SciPy stats.binom用法及代碼示例
- Python SciPy stats.binom_test用法及代碼示例
- Python SciPy stats.binned_statistic_2d用法及代碼示例
- Python SciPy stats.binned_statistic用法及代碼示例
- Python SciPy stats.binned_statistic_dd用法及代碼示例
- Python SciPy stats.bartlett用法及代碼示例
- Python SciPy stats.boltzmann用法及代碼示例
- Python SciPy stats.brunnermunzel用法及代碼示例
- Python SciPy stats.betaprime用法及代碼示例
- Python SciPy stats.betabinom用法及代碼示例
- Python SciPy stats.boxcox_normplot用法及代碼示例
- Python SciPy stats.boxcox用法及代碼示例
- Python SciPy stats.bayes_mvs用法及代碼示例
- Python SciPy stats.boxcox_normmax用法及代碼示例
- Python SciPy stats.burr12用法及代碼示例
- Python SciPy stats.boschloo_exact用法及代碼示例
- Python SciPy stats.bootstrap用法及代碼示例
- Python SciPy stats.burr用法及代碼示例
- Python SciPy stats.bws_test用法及代碼示例
- Python SciPy stats.beta用法及代碼示例
- Python SciPy stats.bradford用法及代碼示例
- Python SciPy stats.boxcox_llf用法及代碼示例
- Python SciPy stats.bernoulli用法及代碼示例
- Python SciPy stats.barnard_exact用法及代碼示例
- Python SciPy stats.anderson用法及代碼示例
注:本文由純淨天空篩選整理自scipy.org大神的英文原創作品 scipy.stats.binomtest。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。