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.
3567 3568 3569 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3567 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
3550 3551 3552 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3550 def overflow_count @overflow_count end |
#overflow_mean ⇒ Float
Mean of values in the overflow bucket.
Corresponds to the JSON property overflowMean
3555 3556 3557 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3555 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
3560 3561 3562 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3560 def underflow_count @underflow_count end |
#underflow_mean ⇒ Float
Mean of values in the undeflow bucket.
Corresponds to the JSON property underflowMean
3565 3566 3567 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3565 def underflow_mean @underflow_mean end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3572 3573 3574 3575 3576 3577 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3572 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 |