I have a set of integer that I am trying to see use different methods to categorize them into four groups, and the 2x2 table for the outcome of the 2 methods is displayed as below:
method_B
method_A 0 1 2 3
0 182 11 0 0
1 41 127 2 0
2 0 12 18 0
3 0 0 0 4
I am thinking of using chisq.test
for comparing whether the difference in grouping distribution produced by 2 methods are likely to be caused by chance, but I am worrying about too many zeroes in the 2x2 table.
Should I use chi.sq
test? Or is there any equivalent fisher.test
for my case?
P.S. I tried fisher.test
but it gives me FEXACT ERROR 501
, which I have no idea what it is.