如何从二项式检验中提取 p 值

How do extract the p value from a binomial test

我有一个二项式检验的结果,它看起来像这样:

data:  x and n
number of successes = 0, number of trials = 7, p-value = 0.01563
alternative hypothesis: true probability of success is not equal to 0.5
95 percent confidence interval:
 0.0000000 0.4096164
sample estimates:
probability of success 
                     0 

我只想知道如何仅提取 R 中的 p 值。我尝试了 grep 和 pmatch,但它们似乎需要 table 或向量。

您只需要做:

binom.test(3,15)$p.value

查看 str(binom.test(3,15)) 以了解二项式检验的其他结果。 3和15任意选择,只要第二个数大于第一个即可。