Codebase list golang-github-beorn7-perks / d9db9f1
more docs Blake Mizerany 11 years ago
1 changed file(s) with 7 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
0 // The quantile package implements Effective Computation of Biased Quantiles over Data Streams
1 // http://www.cs.rutgers.edu/~muthu/bquant.pdf
0 // The quantile package implements Effective Computation of Biased Quantiles
1 // over Data Streams http://www.cs.rutgers.edu/~muthu/bquant.pdf
22 //
3 // This package is useful for calculating targeted quantiles for large datasets within low memory and cpu bounds.
3 // This package is useful for calculating targeted quantiles for large datasets
4 // within low memory and cpu bounds. This means your trading a small amount of
5 // accuracy in rank selection, for efficiency.
6 //
7 // NOTE: Multiple streams can be merged before a Query, allowing clients to be distributed across threads.
48 package quantile
59
610 import (