Class: Google::Cloud::AutoML::V1beta1::Float64Stats::HistogramBucket
- Inherits:
-
Object
- Object
- Google::Cloud::AutoML::V1beta1::Float64Stats::HistogramBucket
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/automl/v1beta1/data_stats.rb
Overview
A bucket of a histogram.
Instance Attribute Summary collapse
-
#count ⇒ ::Integer
The number of data values that are in the bucket, i.e.
-
#max ⇒ ::Float
The maximum value of the bucket, exclusive unless max =
"Infinity"
, in which case it's inclusive. -
#min ⇒ ::Float
The minimum value of the bucket, inclusive.
Instance Attribute Details
#count ⇒ ::Integer
Returns The number of data values that are in the bucket, i.e. are between min and max values.
93 94 95 96 |
# File 'proto_docs/google/cloud/automl/v1beta1/data_stats.rb', line 93 class HistogramBucket include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#max ⇒ ::Float
Returns The maximum value of the bucket, exclusive unless max = "Infinity"
, in
which case it's inclusive.
93 94 95 96 |
# File 'proto_docs/google/cloud/automl/v1beta1/data_stats.rb', line 93 class HistogramBucket include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |
#min ⇒ ::Float
Returns The minimum value of the bucket, inclusive.
93 94 95 96 |
# File 'proto_docs/google/cloud/automl/v1beta1/data_stats.rb', line 93 class HistogramBucket include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end |