micromegas_datafusion_extensions/histogram/mod.rs
1/// Estimate quantiles based on a histogram
2pub mod quantile;
3
4/// Histogram data structures and aggregate function
5pub mod histogram_udaf;
6
7/// Merge a column of histograms of the same shape
8pub mod sum_histograms_udaf;
9
10/// Histogram accumulation
11pub mod accumulator;
12
13/// Get the count & sum of the values in the histogram
14pub mod accessors;
15
16/// Compute variance from running sum and sum of squares in the histogram
17pub mod variance;
18
19/// Expand a histogram struct into rows of (bin_center, count)
20pub mod expand;