Log
-
More verbose documentation for MergeDestructive by Caio 7 years ago
-
More verbose documentation for FromBytes by Caio 7 years ago
-
Change tdigest.FromBytes to decode directly into summary by Vladimir Mihailenco 7 years ago
-
Add TDigest.FromBytes and cleanup RNG interface by Vladimir Mihailenco 7 years ago
-
Add MergeDestructive by Vladimir Mihailenco 7 years ago
-
Use rand.Perm to shuffle data by Vladimir Mihailenco 7 years ago
-
Remove fenwick tree by Vladimir Mihailenco 7 years ago
-
Enable fenwick tree after some threshold by Vladimir Mihailenco 7 years ago
-
Use a non-default compression value on TestClone 💬 by Caio 7 years ago
This patch makes sure we use a non-default compression value when testing the `Clone()` functionality so that we can verify it gets cloned correctly. Ref #24
-
Add TDigest.Clone and TDigest.Compression by Vladimir Mihailenco 7 years ago
-
Change fenwick tree to accept uint32 to avoid extra copy by Vladimir Mihailenco 7 years ago
-
Use bigger fenwick tree so we don't have to rebuild it on every add by Vladimir Mihailenco 7 years ago
-
Add benchmark by Vladimir Mihailenco 7 years ago
-
Document the panic() conditions for TrimmedMean() by Caio 7 years ago
-
Remove go_rng from Gopkg.toml 💬 by Caio 7 years ago
It's a test dependency, I'll let Gopkg.lock handle it alone.
-
Test on 1.11, drop 1.8 by Caio 7 years ago
-
Merge pull request #22 from vmihailenco/master 💬 by Caio 7 years ago
Add TrimmedMean
-
dep ensure by Vladimir Mihailenco 7 years ago
-
Add TrimmedMean by Vladimir Mihailenco 7 years ago
-
Actually use 1.10, not 1.1 💬 by Caio 7 years ago
Numbers!
-
Test on 1.10, stop testing on 1.7 by Caio 7 years ago
-
Simplify the weighted average computation 💬 by Caio 7 years ago
As per #19, this patch just makes it so that `(w1 + w2)` doesn't get repeated in the denominator.
-
Improve accuracy by avoiding floating-point math errors 💬 by Caio 7 years ago
Big thanks to @mcbridne for pointing out that the existing code seemed useless. Closes #19
-
Merge pull request #18 from zeebo/cdf-fix 💬 by Caio 8 years ago
fix cdf for values near the last centroid Fixes #17
-
fix cdf for values near the last centroid by Jeff Wendling 8 years ago
-
Properly compute extreme CDFs 💬 by Caio 8 years ago
When we reach the last centroid in the summary, what we want to do is assume that the last two centroids are of equal width then estimate the CDF via a simple interpolation. Before this patch we would wrongly bound (and compute) this estimation with the last item instead of the one before the last. Fixes #17
-
Update more examples using the old New() api by Caio 8 years ago
-
Make the example actually compile :flushed: by Caio 8 years ago
-
Fix misspell by Caio 8 years ago
-
Merge pull request #15 from nathanleclaire/nathanleclaire-fix-readme-typo-1 💬 by Caio 8 years ago
Fix typo