statrs 0.18.0

Statistical computing library for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod fisher;

/// Specifies an [alternative hypothesis](https://en.wikipedia.org/wiki/Alternative_hypothesis)
#[derive(Debug, Copy, Clone)]
pub enum Alternative {
    #[doc(alias = "two-tailed")]
    #[doc(alias = "two tailed")]
    TwoSided,
    #[doc(alias = "one-tailed")]
    #[doc(alias = "one tailed")]
    Less,
    #[doc(alias = "one-tailed")]
    #[doc(alias = "one tailed")]
    Greater,
}

pub use fisher::{fishers_exact, fishers_exact_with_odds_ratio};