R語言
poisson.test
位於 stats
包(package)。 說明
對泊鬆分布中的速率參數或兩個速率參數之間的比率執行簡單原假設的精確檢驗。
用法
poisson.test(x, T = 1, r = 1,
alternative = c("two.sided", "less", "greater"),
conf.level = 0.95)
參數
x |
事件數量。長度為一或二的向量。 |
T |
事件計數的時間基準。長度為一或二的向量。 |
r |
假設利率或比率 |
alternative |
表示備擇假設,並且必須是 |
conf.level |
返回的置信區間的置信水平。 |
細節
置信區間的計算方式與單樣本情況下的 binom.test
類似,而在兩樣本情況下則使用 binom.test
。
值
類"htest"
的列表包含以下組件:
statistic |
事件數(如果有兩個,則在第一個樣本中。) |
parameter |
相應的預期計數 |
p.value |
檢驗的 p 值。 |
conf.int |
速率或速率比的置信區間。 |
estimate |
估計的利率或利率比率。 |
null.value |
空值 |
alternative |
說明備擇假設的字符串。 |
method |
字符串 |
data.name |
給出數據名稱的字符串。 |
注意
泊鬆數據中的速率參數通常根據 “time on test” 或類似數量(person-years、人口規模或死亡率表中的預期病例數)給出。這就是 T
參數的作用。
單樣本情況實際上是具有非常大的 n
的二項式測試。通過對總事件計數進行調節,將兩個樣本案例轉換為二項式測試,並且比率與該二項式分布中的賠率直接相關。
例子
### These are paraphrased from data sets in the ISwR package
## SMR, Welsh Nickel workers
poisson.test(137, 24.19893)
## eba1977, compare Fredericia to other three cities for ages 55-59
poisson.test(c(11, 6+8+7), c(800, 1083+1050+878))
也可以看看
相關用法
- R poly 計算正交多項式
- R power.t.test 一個和兩個樣本 t 檢驗的功效計算
- R power.prop.test 比例二樣本檢驗的功效計算
- R power.anova.test 方差檢驗平衡單向分析的功效計算
- R power 創建 Power Link 對象
- R plot.stepfun 繪製階躍函數
- R pairwise.t.test 成對 t 檢驗
- R predict.smooth.spline 通過平滑樣條擬合進行預測
- R plot.profile.nls 繪製 profile.nls 對象
- R predict 模型預測
- R plot.isoreg isoreg 對象的繪圖方法
- R profile.nls 分析 nls 對象的方法
- R plot.HoltWinters HoltWinters 對象的繪圖函數
- R ppoints 概率圖的坐標
- R predict.HoltWinters 擬合 Holt-Winters 模型的預測函數
- R proj 模型預測
- R predict.loess 預測黃土曲線或表麵
- R preplot 繪圖對象的預計算
- R plot.ts 繪製時間序列對象
- R prcomp 主成分分析
- R printCoefmat 打印係數矩陣
- R plot.density 核密度估計的繪圖方法
- R profile 分析模型的通用函數
- R ppr 投影尋蹤回歸
- R prop.test 等比例或給定比例檢驗
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Exact Poisson tests。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。