Class: Google::Apis::DataflowV1b3::OutlierStats
- Inherits:
-
Object
- Object
- Google::Apis::DataflowV1b3::OutlierStats
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dataflow_v1b3/classes.rb,
lib/google/apis/dataflow_v1b3/representations.rb,
lib/google/apis/dataflow_v1b3/representations.rb
Overview
Statistics for the underflow and overflow bucket.
Instance Attribute Summary collapse
-
#overflow_count ⇒ Fixnum
Number of values that are larger than the upper bound of the largest bucket.
-
#overflow_mean ⇒ Float
Mean of values in the overflow bucket.
-
#underflow_count ⇒ Fixnum
Number of values that are smaller than the lower bound of the smallest bucket.
-
#underflow_mean ⇒ Float
Mean of values in the undeflow bucket.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OutlierStats
constructor
A new instance of OutlierStats.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ OutlierStats
Returns a new instance of OutlierStats.
3612 3613 3614 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3612 def initialize(**args) update!(**args) end |
Instance Attribute Details
#overflow_count ⇒ Fixnum
Number of values that are larger than the upper bound of the largest bucket.
Corresponds to the JSON property overflowCount
3595 3596 3597 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3595 def overflow_count @overflow_count end |
#overflow_mean ⇒ Float
Mean of values in the overflow bucket.
Corresponds to the JSON property overflowMean
3600 3601 3602 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3600 def overflow_mean @overflow_mean end |
#underflow_count ⇒ Fixnum
Number of values that are smaller than the lower bound of the smallest bucket.
Corresponds to the JSON property underflowCount
3605 3606 3607 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3605 def underflow_count @underflow_count end |
#underflow_mean ⇒ Float
Mean of values in the undeflow bucket.
Corresponds to the JSON property underflowMean
3610 3611 3612 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3610 def underflow_mean @underflow_mean end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3617 3618 3619 3620 3621 3622 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3617 def update!(**args) @overflow_count = args[:overflow_count] if args.key?(:overflow_count) @overflow_mean = args[:overflow_mean] if args.key?(:overflow_mean) @underflow_count = args[:underflow_count] if args.key?(:underflow_count) @underflow_mean = args[:underflow_mean] if args.key?(:underflow_mean) end |