我使用here的引用(PDF的第19页)来计算直接标准化发病率的置信区间。这一章引用了Table of 95% Confidence Limits for the Number of Cases, for 1-29 Cases, Based on the Poisson Distribution
,附在此处:
我尝试使用ci.poisson
包中的epicalc
函数生成数字:
> ci.poisson(0,29)
events person.time incidence se exact.lower95ci exact.upper95ci
0 29 0 0 0 0.1272069
输出与PDF表格不同,后者应为0.0000
- 3.6889
。我想知道我是否使用了错误的函数来生成数字。如何使用R构造该表?感谢。