-
-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Fisher's exact test #11
Comments
I'd just like to add my support for this feature. This is something I could use in a project I'm currently working on. |
Thanks for adding your voice here. Can you maybe elaborate a bit about the structure of your project? This Fisher's test got delayed a bit mostly because I cannot decide on the interface that would be suitable for every potential use case. For my case I would make a function that gets two matrices as an input and both matrices would:
Then the test |
@KKPMW What you described would exactly fit my needs. I think that's the most generalized way to set up a matrix-oriented application of the 2x2 Fisher's test. I like the idea of enforcing at most 2 levels, and the only tricky part there is what you accept as data types. Definitely logical types make sense, and I think factors could make sense as well. Anything else could be a lower priority as the test is strictly categorical and it's not clear that character and numeric values are categorical or continuous measures. |
@mdshw5 I took a look at Fisher's test again and I remember now why I postponed it at that time. Short story: the function uses maximum likelihood estimates for odds ratio and confidence intervals. To do this computationally R calls the But there are some things that can be computed very quickly. One such thing is p-values under OR=1 NULL. If those would be enough for your project, I could create a dev branch with this kind of handicapped Fisher's test for now. |
Thanks for looking into this! In fact p-values under the OR=1 null hypothesis would be useful for my project. I’d be glad to test out any implementation.
… On Apr 30, 2020, at 2:38 PM, Karolis Koncevičius ***@***.***> wrote:
@mdshw5 I took a look at Fisher's test again and I remember now why I postponed it at that time.
Short story: the function uses maximum likelihood estimates for odds ratio and confidence intervals. To do this computationally R cals the uniroot() function, which basically is looking for a minimum of a given function. At the current stage it seems to be that it would be very hard to fasten up this approach...
But there are some things that can be computed very quickly. One such thing is p-values under OR=1 NULL. If those would be enough for your project, I could create a dev branch with this kind of handicapped Fisher's test for now.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
Implement Fisher's exact test for a 2x2 case.
Input can be a pair of matrices. For a row-wise case each row of both matrices will have 2 unique levels (logical, factor, character or even numeric).
The text was updated successfully, but these errors were encountered: