HdrHistogram / hdrhistogram-go

A pure Go implementation of Gil Tene's HDR Histogram.
MIT License
429 stars 64 forks source link

class intervals and counts? #14

Closed Dieterbe closed 8 years ago

Dieterbe commented 8 years ago

Hello, do i understand correctly that this histogram is not able to return class intervals ("buckets") and the counts thereof? (which is what i thought histograms do) the closest i could find was the func (*Histogram) CumulativeDistribution but the brackets returned are delineated by the quantile they're at (e.g. how many values have been included) as opposed to value thresholds.

thanks

codahale commented 8 years ago

Bracket includes ValueAt, which is the ceiling of the bracket.