本文簡要介紹 python 語言中 scipy.stats.binom_test
的用法。
用法:
scipy.stats.binom_test(x, n=None, p=0.5, alternative='two-sided')
執行成功概率為 p 的測試。
注意:
binom_test
已棄用;建議使用binomtest
代替。這是對原假設(伯努利實驗成功概率為 p)的精確的雙向檢驗。
- x: int 或 數組
成功的次數,或者如果 x 的長度為 2,則它是成功的次數和失敗的次數。
- n: int
試驗次數。如果 x 給出成功和失敗的次數,則忽略此值。
- p: 浮點數,可選
假設的成功概率。
0 <= p <= 1
。默認值為p = 0.5
。- alternative: {‘雙麵’,‘greater’, ‘less’},可選
表示備擇假設。默認值為“雙麵”。
- p-value: 浮點數
假設檢驗的 p 值。
參數:
返回:
參考:
例子:
>>> from scipy import stats
一家汽車製造商聲稱不超過 10% 的汽車不安全。 15輛汽車接受安全檢查,3輛被發現不安全。測試製造商的聲明:
>>> stats.binom_test(3, n=15, p=0.1, alternative='greater') 0.18406106910639114
無法在 5% 顯著性水平上拒絕原假設,因為返回的 p 值大於 5% 的臨界值。
相關用法
- Python SciPy stats.binom用法及代碼示例
- Python SciPy stats.binomtest用法及代碼示例
- 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.beta用法及代碼示例
- Python SciPy stats.bradford用法及代碼示例
- Python SciPy stats.boxcox_llf用法及代碼示例
- Python SciPy stats.bernoulli用法及代碼示例
- Python SciPy stats.barnard_exact用法及代碼示例
- Python SciPy stats.iqr用法及代碼示例
- Python SciPy stats.genpareto用法及代碼示例
注:本文由純淨天空篩選整理自scipy.org大神的英文原創作品 scipy.stats.binom_test。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。