Versions in this module Expand all Collapse all v1 v1.0.1 Jul 31, 2019 v1.0.0 Apr 14, 2019 Changes in this version + type Bin struct + Count int + Sum float64 + func (b *Bin) Mean() float64 + func (b *Bin) Update(x *Bin) + type Bins []*Bin + func (bs *Bins) Pop() interface{} + func (bs *Bins) Push(x interface{}) + func (bs Bins) Len() int + func (bs Bins) Less(i, j int) bool + func (bs Bins) Swap(i, j int) + type Histogram struct + func New(maxBins int) *Histogram + func (h *Histogram) Bins() Bins + func (h *Histogram) Insert(f float64)