Registry / utility / influxdata-tdigest

influxdata-tdigest

JSON →
library0.0.1gogounverified

An implementation of the t-digest algorithm for accurate percentile estimation.

go get github.com/influxdata/tdigest
INSTALL
IMPORT
SIG · INFLUXDATA-TDIGEST
I
influxdata-tdigest
utilitygov0.0.1
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

tdigest
github.com/influxdata/tdigest

Creates a t-digest, adds data points, and computes the median.

package main import ( "fmt" "github.com/influxdata/tdigest" ) func main() { t := tdigest.New() for i := 1.0; i <= 1000; i++ { t.Add(i, 1) } fmt.Println(t.Quantile(0.5)) }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.0.1latest on pkg.go.dev
Audit
Dependencies

No dependency data recorded yet.

Agent activity
10 hits · last 30 days
node
10
Resources
influxdata-tdigest — go get influxdata-tdigest · libregistry