scirs2_core/ndarray_ext/stats/
mod.rs

1//! Statistical functions for ndarray arrays
2//!
3//! This module provides statistical functions for ndarray arrays, similar to `NumPy`'s
4//! statistical functions.
5
6// Module declarations
7mod correlation;
8mod descriptive;
9mod distribution;
10mod hypothesis;
11
12// Re-exports from descriptive statistics module
13pub use descriptive::{
14    max, max_2d, mean, mean_2d, median, median_2d, min, min_2d, percentile, percentile_2d,
15    product_2d, std_dev, std_dev_2d, sum_2d, variance, variance_2d,
16};
17
18// Re-exports from distribution-related module
19pub use distribution::{
20    bincount, digitize, histogram, histogram2d, quantile, Histogram2dResult, HistogramResult,
21};
22
23// Re-exports from correlation module
24pub use correlation::{corrcoef, cov};
25
26// Re-exports from hypothesis testing module
27// (No functions yet)
28
29// Re-export any other types that were previously exposed