binom.test
位於 stats
包(package)。 說明
對伯努利實驗成功概率的簡單原假設進行精確檢驗。
用法
binom.test(x, n, p = 0.5,
alternative = c("two.sided", "less", "greater"),
conf.level = 0.95)
參數
x |
成功次數,或長度為 2 的向量,分別給出成功和失敗的次數。 |
n |
試驗次數;如果 |
p |
假設的成功概率。 |
alternative |
表示備擇假設,並且必須是 |
conf.level |
返回的置信區間的置信水平。 |
細節
置信區間是通過 Clopper 和 Pearson (1934) 首次給出的程序獲得的。這保證置信水平至少為 conf.level
,但通常不會給出 shortest-length 置信區間。
值
類"htest"
的列表包含以下組件:
statistic |
成功的次數。 |
parameter |
試驗次數。 |
p.value |
檢驗的 p 值。 |
conf.int |
成功概率的置信區間。 |
estimate |
估計的成功概率。 |
null.value |
空值 |
alternative |
說明備擇假設的字符串。 |
method |
字符串 |
data.name |
給出數據名稱的字符串。 |
例子
## Conover (1971), p. 97f.
## Under (the assumption of) simple Mendelian inheritance, a cross
## between plants of two particular genotypes produces progeny 1/4 of
## which are "dwarf" and 3/4 of which are "giant", respectively.
## In an experiment to determine if this assumption is reasonable, a
## cross results in progeny having 243 dwarf and 682 giant plants.
## If "giant" is taken as success, the null hypothesis is that p =
## 3/4 and the alternative that p != 3/4.
binom.test(c(682, 243), p = 3/4)
binom.test(682, 682 + 243, p = 3/4) # The same.
## => Data are in agreement with the null hypothesis.
參考
Clopper, C. J. & Pearson, E. S. (1934). The use of confidence or fiducial limits illustrated in the case of the binomial. Biometrika, 26, 404-413. doi:10.2307/2331986.
William J. Conover (1971), Practical nonparametric statistics. New York: John Wiley & Sons. Pages 97-104.
Myles Hollander & Douglas A. Wolfe (1973), Nonparametric Statistical Methods. New York: John Wiley & Sons. Pages 15-22.
也可以看看
prop.test
用於相等或給定比例的一般(近似)測試。
相關用法
- R biplot 多元數據的雙標圖
- R birthday 巧合的概率
- R biplot.princomp 主成分雙標圖
- R bartlett.test 方差齊性的 Bartlett 檢驗
- R bandwidth 用於核密度估計的帶寬選擇器
- R stlmethods STL 對象的方法
- R medpolish 矩陣的中值波蘭(穩健雙向分解)
- R naprint 調整缺失值
- R summary.nls 總結非線性最小二乘模型擬合
- R summary.manova 多元方差分析的匯總方法
- R formula 模型公式
- R nls.control 控製 nls 中的迭代
- R aggregate 計算數據子集的匯總統計
- R deriv 簡單表達式的符號和算法導數
- R kruskal.test Kruskal-Wallis 秩和檢驗
- R quade.test 四方測試
- R decompose 移動平均線的經典季節性分解
- R plot.stepfun 繪製階躍函數
- R alias 查找模型中的別名(依賴項)
- R qqnorm 分位數-分位數圖
- R eff.aovlist 多層方差分析的計算效率
- R pairwise.t.test 成對 t 檢驗
- R loglin 擬合對數線性模型
- R predict.smooth.spline 通過平滑樣條擬合進行預測
- R influence.measures 回歸刪除診斷
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Exact Binomial Test。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。