Skip to main content

wowlab_types/stats/
mod.rs

1//! Statistics: streaming (Welford) and batch algorithms.
2
3mod chart_overlay;
4pub mod simd;
5mod summary;
6mod timeline_layout;
7
8pub use chart_overlay::{
9    ChartOverlayView, ScatterOverlayView, compute_chart_overlay, compute_scatter_overlay,
10};
11pub use summary::{
12    Batch, LinearRegression, Streaming, Summary, compute_all_percentiles_from_hdr,
13    compute_bucket_averages_x10, compute_result_core, correlation, covariance, ema, ema_span,
14    histogram_percentile_from_hdr, linear_regression, merge_dps_stats, sma,
15};
16pub use timeline_layout::{
17    DEFAULT_TARGET_PIXELS_PER_TICK, TimelineGeometry, TimelineMetrics, TimelineViewport,
18    assign_timeline_lanes, compute_timeline_metrics, compute_timeline_ticks, pan_timeline_by,
19    zoom_timeline_at,
20};
21
22#[cfg(test)]
23mod tests;