Skip to main content

wowlab_types/stats/summary/
mod.rs

1//! Statistics: streaming (Welford) and batch algorithms.
2
3mod aggregate;
4mod batch;
5mod series;
6mod streaming;
7
8pub use aggregate::{
9    compute_all_percentiles_from_hdr, compute_bucket_averages_x10, compute_result_core,
10    histogram_percentile_from_hdr, merge_dps_stats,
11};
12pub use batch::{Batch, Summary};
13pub use series::{
14    LinearRegression, correlation, covariance, ema, ema_span, linear_regression, sma,
15};
16pub use streaming::Streaming;