Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DatasetDistributionDistributionBucket
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1DatasetDistributionDistributionBucket
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1/classes.rb,
lib/google/apis/aiplatform_v1/representations.rb,
lib/google/apis/aiplatform_v1/representations.rb
Overview
Dataset bucket used to create a histogram for the distribution given a population of values.
Instance Attribute Summary collapse
-
#count ⇒ Fixnum
Output only.
-
#left ⇒ Float
Output only.
-
#right ⇒ Float
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1DatasetDistributionDistributionBucket
constructor
A new instance of GoogleCloudAiplatformV1DatasetDistributionDistributionBucket.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1DatasetDistributionDistributionBucket
Returns a new instance of GoogleCloudAiplatformV1DatasetDistributionDistributionBucket.
4218 4219 4220 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 4218 def initialize(**args) update!(**args) end |
Instance Attribute Details
#count ⇒ Fixnum
Output only. Number of values in the bucket.
Corresponds to the JSON property count
4206 4207 4208 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 4206 def count @count end |
#left ⇒ Float
Output only. Left bound of the bucket.
Corresponds to the JSON property left
4211 4212 4213 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 4211 def left @left end |
#right ⇒ Float
Output only. Right bound of the bucket.
Corresponds to the JSON property right
4216 4217 4218 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 4216 def right @right end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4223 4224 4225 4226 4227 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 4223 def update!(**args) @count = args[:count] if args.key?(:count) @left = args[:left] if args.key?(:left) @right = args[:right] if args.key?(:right) end |