An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# Histogram

[![Build Status](https://travis-ci.org/bsm/histogram.svg)](https://travis-ci.org/bsm/histogram) [![GoDoc](https://godoc.org/github.com/bsm/histogram?status.svg)](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).