//! Categorical hypothesis tests over contingency tables.
//!
//! Houses the Pearson chi-squared test of independence (the worked PATTERN) and,
//! as the track lands them, the Fisher exact test, the `McNemar` test, the
//! Cochran Q test, and the Cramér's V effect size with its bootstrap interval.
//! Each test computes its asymptotic p-value through the framework's null
//! distribution ([`crate::distributions::ChiSquaredDistribution`]) rather than a
//! re-derived series.
pub use chi_squared_independence;
pub use cochrans_q;
pub use ;
pub use fisher_exact;
pub use mcnemar;