micromegas-analytics 0.11.0

analytics module of micromegas
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/// Estimate quantiles based on a histogram
pub mod quantile;

/// Histogram data structures and aggregate function
pub mod histogram_udaf;

/// Merge a column of histograms of the same shape
pub mod sum_histograms_udaf;

/// Histogram accumulation
pub mod accumulator;

/// Get the count & sum of the values in the histogram
pub mod accessors;

/// Compute variance from running sum and sum of squares in the histogram
pub mod variance;