fisher test Entry Nr. 3281, by user 1 |
|
|
Two groups have answered a question:
Group A: 119 said yes, 43 said no
Group B: 88 said yes, 58 said no
R -q -e 'fisher.test(rbind(c(119,43),c(88,58)))'
p-value = 0.0153
Testing more choices is also possible:
R -q -e 'fisher.test(rbind(c(119,43,163),c(88,58,179)))'
p-value = 0.02259 |
|
|
|
|