NSketch v0.1

IHistogram Interface

The interface IHistogram defines the method required for the streaming histogram algorithm implementation.

For a list of all members of this type, see IHistogram Members.

public interface IHistogram

Types that implement IHistogram

Type Description
ExpHistogram The exponential histogram is high-streaming-performance approximated variant of the streaming histogram.
NaiveHistogram The class NaiveHistogram provides an implementation of the naive histograms where all the bucket have the same length.
SechapHistogram Streamed Equi-Cost Approximate Histogram (SECHAP)

Remarks

An IHistogram is a ICollection`1 of IBuckets. Values could be be added on the fly to the histogram using the method Add. The number of values added is given by the property StreamLength.

Requirements

Namespace: NSketch

Assembly: NSketch (in NSketch.dll)

See Also

IHistogram Members | NSketch Namespace