Skip to content

Releases: CamDavidsonPilon/tdigest

v0.6.0.1

04 May 00:04
e35cfd7
Compare
Choose a tag to compare
Merge pull request #62 from microprediction/master

from_dict

v0.5.2.1

05 May 13:24
6e1ca92
Compare
Choose a tag to compare

Fixes bug with PySpark Pickling

v0.5.2

12 Mar 14:58
055144a
Compare
Choose a tag to compare

0.5.2

  • added new methods onto TDigest object:
    • to_dict(): return a Python dictionary of the TDigest and internal Centroid values.
    • update_from_dict(dict_values): update from serialized dictionary values into the TDigest object.
    • centroids_to_list(): return a Python list of the TDigest object's internal Centroid values.
    • update_centroids_from_list(list_values): update Centroids from a python list.

v0.5.0

27 Dec 13:35
Compare
Choose a tag to compare

0.5.0

  • updated to use new accumulation_tree library. This replacement means much better performance in updating the TDigest's inserts (linear to logarithmic complexity).
  • Fixed issues with percentile function
  • quantile has be renamed to the more correct name cdf