statrs/stats_tests/
mod.rs

1pub mod fisher;
2
3/// Specifies an [alternative hypothesis](https://en.wikipedia.org/wiki/Alternative_hypothesis)
4#[derive(Debug, Copy, Clone)]
5pub enum Alternative {
6    #[doc(alias = "two-tailed")]
7    #[doc(alias = "two tailed")]
8    TwoSided,
9    #[doc(alias = "one-tailed")]
10    #[doc(alias = "one tailed")]
11    Less,
12    #[doc(alias = "one-tailed")]
13    #[doc(alias = "one tailed")]
14    Greater,
15}
16
17pub use fisher::{fishers_exact, fishers_exact_with_odds_ratio};