Click or drag to resize

MergingDigest Methods

The MergingDigest type exposes the following members.

Methods
  NameDescription
Public methodAdd(Double)
Add a sample to this TDigest.
Public methodAdd(ListMergingDigest)
Public methodAdd(Double, Int32)
Adds a sample to a histogram.
Public methodCdf
Returns the fraction of all points added which are less than x.
Public methodCompress
Re-examines a t-digest to determine whether some centroids are redundant.If your data are perversely ordered, this may be a good idea.Even if not, this may save 20% or so in space. The cost is roughly the same as adding as many data points as there are centroids.This is typically < 10 * compression, but could be as high as 100 * compression. This is a destructive operation that is not thread-safe.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodQuantile
Returns an estimate of the cutoff such that a specified fraction of the data added to this TDigest would be less than or equal to the cutoff.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also