Releases: castle/tdigest
Releases · castle/tdigest
Release v0.2.1
Ruby T-Digest 0.1.1
Changes
- Performance improvements. More efficient
merge!
operation
Ruby T-Digest 0.1.0
Features
- Ability to add two tdigests using
+
operator or merge to existing usingmerge!
method (@bwahlgreen) - Autimatically
compress!
when above threshold, as per Java implementation. (@bwahlgreen)
Changes
size
now reports number of observations instead of number of centroids. If you want number of centroids you callcentroids.size
instead.
Ruby T-Digest 0.0.4
Features
- Implemented byte serialization (
as_bytes
andas_small_bytes
) according to Java implementation
Ruby T-Digest 0.0.3
Performance improvements
Ruby T-Digest 0.0.2
Bugfixes
- Fixed error where
percentile
would crash when there was only one value in the set (2986018)