Interface Bucket
Representation of a histogram bucket, including the boundary value and the count of observations in that bucket.
The boundary value is an upper bound on the observation values that can occupy the bucket. That is, an observation occupies a bucket if its value is less than or equal to the bucket's boundary value.
-
Method Summary
-
Method Details
-
boundary
double boundary()Returns the bucket boundary.- Returns:
- bucket boundary value
-
boundary
-
count
long count()Returns the number of observations in the bucket.- Returns:
- observation count for the bucket
-