https://github.com/bsm/histogram
Streamining histograms in Go
https://github.com/bsm/histogram
Last synced: 8 months ago
JSON representation
Streamining histograms in Go
- Host: GitHub
- URL: https://github.com/bsm/histogram
- Owner: bsm
- License: apache-2.0
- Created: 2017-02-20T11:50:17.000Z (over 9 years ago)
- Default Branch: main
- Last Pushed: 2022-06-06T09:55:26.000Z (about 4 years ago)
- Last Synced: 2025-03-22T19:02:31.150Z (about 1 year ago)
- Language: Go
- Size: 30.3 KB
- Stars: 8
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Histogram
[](https://travis-ci.org/bsm/histogram) [](https://godoc.org/github.com/bsm/histogram)
Fast Go implementation of Ben-Haim's and Yom-Tov's streaming histogram algorithm, as described in their _A Streaming Parallel Decision Tree Algorithm_
(2010, [PDF](http://jmlr.org/papers/volume11/ben-haim10a/ben-haim10a.pdf)) paper.
## Documentation
Please see the [API documentation](https://godoc.org/github.com/bsm/histogram) for package and API descriptions and examples.
## Credits
- Aaron Windsor - https://github.com/aaw/histosketch (released into the public domain).