Skip to content
Prev 68065 / 398502 Next

a statistic question,a bit off-topic,but important

On Wed, 20 Apr 2005 01:36:02 +0800 ronggui wrote:

            
If I understand you correctly, you're not interested in C at all and
just want to test P(A | C') = P(B | C') = 0.5. This can be done by
binom.test. Assuming the above were not proportions but observations
  binom.test(23, 23+28)
Instead of performing this exact test you can also perform the
asymptotic test via prop.test()
  prop.test(23, 23+28)
Z