Displaying 1 result from an estimated 1 matches for "is_c".
Did you mean:
in_c
2013 Mar 12
1
Testing for significance of overlap in three sets - mantelhaen test?
...ould do a Fisher or chi-square test. Here is what I have attempted so
far:
#################
### Prepare a 3 way contingency table:
mytable <- array(c(135,116,385,6256,
48,97,274,9555),
dim = c(2,2,2),
dimnames = list(
Is_C = c('Yes','No'),
Is_B = c('Yes','No'),
Is_A = c('Yes','No')))
## test
mantelhaen.test(myrabbit, exact = TRUE, alternative = "greater")
###################### end code
Is this the right test (alongwi...