Skip to content

Commit 0bcbe32

Browse files
committed
Package tdigest.2.1.2
1 parent 0148702 commit 0bcbe32

File tree

1 file changed

+35
-0
lines changed
  • packages/tdigest/tdigest.2.1.2

1 file changed

+35
-0
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
opam-version: "2.0"
2+
maintainer: "Simon Grondin"
3+
authors: [
4+
"Simon Grondin"
5+
"Will Welch"
6+
]
7+
synopsis: "OCaml implementation of the T-Digest algorithm"
8+
description: """
9+
The T-Digest is a data structure and algorithm for constructing an approximate distribution for a collection of real numbers presented as a stream.
10+
11+
The T-Digest can estimate percentiles or quantiles extremely accurately even at the tails, while using a fraction of the space.
12+
13+
Additionally, the T-Digest is concatenable, making it a good fit for distributed systems. The internal state of a T-Digest can be exported as a binary string, and the concatenation of any number of those strings can then be imported to form a new T-Digest.
14+
"""
15+
license: "MIT"
16+
homepage: "https://github.com/SGrondin/tdigest"
17+
dev-repo: "git://github.com/SGrondin/tdigest"
18+
doc: "https://github.com/SGrondin/tdigest"
19+
bug-reports: "https://github.com/SGrondin/tdigest/issues"
20+
depends: [
21+
"ocaml" { >= "4.10.0" }
22+
"dune" { >= "1.9.0" }
23+
24+
"core" { >= "v0.15.0" & < "v0.17.0" }
25+
# "ocamlformat" { = "0.25.1" } # Development
26+
# "ocaml-lsp-server" # Development
27+
]
28+
build: ["dune" "build" "-p" name "-j" jobs]
29+
url {
30+
src: "https://github.com/SGrondin/tdigest/archive/refs/tags/2.1.2.tar.gz"
31+
checksum: [
32+
"md5=1f200a6b32f0d19ee0e33d77584fa9bc"
33+
"sha512=8649e06a21f602c084c85c21f5d98a9f9332d603cc5bfda994566c9620f73863d0bf741bd322015dffa5ab1c26c42b97faead69dc1d514128eeb592e06f81847"
34+
]
35+
}

0 commit comments

Comments
 (0)