From add9672c02b81c240ffd557e532ed314c7689ce5 Mon Sep 17 00:00:00 2001 From: Robbie McKinstry Date: Thu, 24 Oct 2024 17:18:43 -0400 Subject: [PATCH] Remove dead contingency table code. This was dead code because I reimplemented contingency tables in a better way. --- src/stats/mod.rs | 2 -- src/stats/table.rs | 6 ------ 2 files changed, 8 deletions(-) delete mode 100644 src/stats/table.rs diff --git a/src/stats/mod.rs b/src/stats/mod.rs index fa58b73..a17567d 100644 --- a/src/stats/mod.rs +++ b/src/stats/mod.rs @@ -116,5 +116,3 @@ pub enum Group { /// contains the engine to calculate the chi square test statistic. mod chi; -/// contains implementations of contingency tables. -mod table; diff --git a/src/stats/table.rs b/src/stats/table.rs deleted file mode 100644 index 2fe757c..0000000 --- a/src/stats/table.rs +++ /dev/null @@ -1,6 +0,0 @@ -/// A [FixedContingencyTable] is used to model scenarios where the -/// frequencies are fixed (i.e. known ahead of time), like fair dice. -/// It is mostly used for testing. -pub struct FixedContingencyTable { - frequency: f64, -}