Versions in this module Expand all Collapse all v0 v0.0.1 Mar 1, 2023 Changes in this version + var ErrTDigestDisabled = fmt.Errorf("tdigest is disabled") + type Number interface + type Stat struct + func New(tdigestEnable bool) *Stat[T] + func (s *Stat[T]) Add(value T) + func (s *Stat[T]) Amount() int64 + func (s *Stat[T]) Avg() float64 + func (s *Stat[T]) DrawPNG(w io.Writer, points int) error + func (s *Stat[T]) Max() T + func (s *Stat[T]) Min() T + func (s *Stat[T]) Quantile(q float64) float64 + func (s *Stat[T]) Rms() float64 + func (s *Stat[T]) Stddev() float64 + func (s *Stat[T]) String() string + func (s *Stat[T]) Sum() float64