Get around ‘WARNING: Fisher’s exact test is not computed when the total sample size exceeds 32767.’

This post was kindly contributed by SAS & Statistics - go there to comment and to read the full post.

Fisher’s Exact test can be memory and computation extensive when the sample size is large. For the large sample size problem, you can use Monte-Carlo estimates of the exact p-value to get around the issue. For example,
exact fisher /mc;
More details of the MC option can be found here –

This post was kindly contributed by SAS & Statistics - go there to comment and to read the full post.