gohistogram alternatives and similar packages
Based on the "Science and Data Analysis" category.
Alternatively, view gohistogram alternatives based on common mentions on social networks and blogs.
-
gonum
Gonum is a set of numeric libraries for the Go programming language. It contains libraries for matrices, statistics, optimization, and more -
Stats
A well tested and comprehensive Golang statistics library package with no dependencies. -
gosl
Linear algebra, eigenvalues, FFT, Bessel, elliptic, orthogonal polys, geometry, NURBS, numerical quadrature, 3D transfinite interpolation, random numbers, Mersenne twister, probability distributions, optimisation, differential equations. -
dataframe-go
DataFrames for Go: For statistics, machine-learning, and data manipulation/exploration -
gonum/mat64
The general purpose package for matrix computation. Package mat64 provides basic linear algebra operations for float64 matrices. -
calendarheatmap
๐ Calendar heatmap inspired by GitHub contribution activity -
TextRank
:wink: :cyclone: :strawberry: TextRank implementation in Golang with extendable features (summarization, phrase extraction) and multithreading (goroutine). -
sparse
Sparse matrix formats for linear algebra supporting scientific and machine learning applications -
evaler
Implements a simple floating point arithmetic expression evaluator in Go (golang). -
triangolatte
2D triangulation library. Allows translating lines and polygons (both based on points) to the language of GPUs. -
piecewiselinear
tiny linear interpolation library for go (factored out from https://github.com/sgreben/yeetgif) -
PiHex
PiHex Library, written in Go, generates a hexadecimal number sequence in the number Pi in the range from 0 to 10,000,000. -
GoStats
GoStats is a go library for math statistics mostly used in ML domains, it covers most of the statistical measures functions. -
godesim
ODE system solver made simple. For IVPs (initial value problems). -
assocentity
Package assocentity returns the mean distance from tokens to an entity and its synonyms -
bradleyterry
Package to do Bradley-Terry Model pairwise compairsons -
gograph
A golang generic graph library that provides mathematical graph-theory and algorithms. -
mudlark-go
A collection of packages providing (hopefully) useful code for use in software using Google's Go programming language.
Clean code begins in your IDE with SonarLint
Do you think we are missing an alternative of gohistogram or a related project?
README
gohistogram - Histograms in Go
This package provides Streaming Approximate Histograms for efficient quantile approximations.
The histograms in this package are based on the algorithms found in Ben-Haim & Yom-Tov's A Streaming Parallel Decision Tree Algorithm (PDF). Histogram bins do not have a preset size. As values stream into the histogram, bins are dynamically added and merged.
Another implementation can be found in the Apache Hive project (see NumericHistogram).
An example:
The accurate method of calculating quantiles (like percentiles) requires data to be sorted. Streaming histograms make it possible to approximate quantiles without sorting (or even individually storing) values.
NumericHistogram is the more basic implementation of a streaming histogram. WeightedHistogram implements bin values as exponentially-weighted moving averages.
A maximum bin size is passed as an argument to the constructor methods. A larger bin size yields more accurate approximations at the cost of increased memory utilization and performance.
A picture of kittens:
Getting started
Using in your own code
$ go get github.com/VividCortex/gohistogram
import "github.com/VividCortex/gohistogram"
Running tests and making modifications
Get the code into your workspace:
$ cd $GOPATH
$ git clone [email protected]:VividCortex/gohistogram.git ./src/github.com/VividCortex/gohistogram
You can run the tests now:
$ cd src/github.com/VividCortex/gohistogram
$ go test .
API Documentation
Full source documentation can be found here.
Contributing
We only accept pull requests for minor fixes or improvements. This includes:
- Small bug fixes
- Typos
- Documentation or comments
Please open issues to discuss new features. Pull requests for new features will be rejected, so we recommend forking the repository and making changes in your fork for your use case.
License
Copyright (c) 2013 VividCortex
Released under MIT License. Check LICENSE
file for details.
*Note that all licence references and agreements mentioned in the gohistogram README section above
are relevant to that project's source code only.