• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

histogram/H14-Apr-2019-

quantile/H03-May-2022-

topk/H14-Apr-2019-

.gitignoreH A D14-Apr-201914

LICENSEH A D14-Apr-20191 KiB

README.mdH A D14-Apr-20191.8 KiB

VERSIONH A D14-Apr-20196

go.modH A D14-Apr-201940

README.md

1# Perks for Go (golang.org)
2
3Perks contains the Go package quantile that computes approximate quantiles over
4an unbounded data stream within low memory and CPU bounds.
5
6For more information and examples, see:
7http://godoc.org/github.com/bmizerany/perks
8
9A very special thank you and shout out to Graham Cormode (Rutgers University),
10Flip Korn (AT&T Labs–Research), S. Muthukrishnan (Rutgers University), and
11Divesh Srivastava (AT&T Labs–Research) for their research and publication of
12[Effective Computation of Biased Quantiles over Data Streams](http://www.cs.rutgers.edu/~muthu/bquant.pdf)
13
14Thank you, also:
15* Armon Dadgar (@armon)
16* Andrew Gerrand (@nf)
17* Brad Fitzpatrick (@bradfitz)
18* Keith Rarick (@kr)
19
20FAQ:
21
22Q: Why not move the quantile package into the project root?
23A: I want to add more packages to perks later.
24
25Copyright (C) 2013 Blake Mizerany
26
27Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
28
29The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
30
31THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
32