我有二项式测试的结果,它看起来像这样:
printf("x= %s ", buf[0]); //I want it to give me x = 335 and so on for the y
我想知道的是如何仅提取R中的p值。我尝试了grep和pmatch,但它们似乎需要一个表或向量。
答案 0 :(得分:5)
你只需要这样做:
binom.test(3,15)$p.value
查看str(binom.test(3,15))
以查看二项式测试的其他结果。只要第二个数字大于第一个数字,就可以任意选择3和15。