From b7480b20d4ca5af94e1f72660568d471daebc134 Mon Sep 17 00:00:00 2001 From: Palash Tyagi <23239946+Magnus167@users.noreply.github.com> Date: Sat, 12 Jul 2025 00:30:26 +0100 Subject: [PATCH] Add correlation module and update exports in stats module --- src/compute/stats/mod.rs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/compute/stats/mod.rs b/src/compute/stats/mod.rs index f1253a2..dda89bb 100644 --- a/src/compute/stats/mod.rs +++ b/src/compute/stats/mod.rs @@ -1,2 +1,7 @@ pub mod descriptive; -pub mod distributions; \ No newline at end of file +pub mod distributions; +pub mod correlation; + +pub use descriptive::*; +pub use distributions::*; +pub use correlation::*; \ No newline at end of file