Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要使用 R 在二项式过程中确定合适的样本量来估计 p。我看到了 binomSamSize 包,但我没有看到使用 Clopper-Pearson 确定样本量。
binomSamSizepkg 有一个通用函数 binom.ciss,它允许您使用 pkg 中的任何置信区间函数来确定binom样本量。因此,您可以使用以下方法轻松确定 Clopper-Pearson 样本大小:
binomSamSize
binom
library(binomSamSize) ciss.binom(p0=0.1, d=0.1, alpha=0.05, ci.fun=binom::binom.exact)