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.
3714 3715 3716 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3714 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
3697 3698 3699 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3697 def overflow_count @overflow_count end |
#overflow_mean ⇒ Float
Mean of values in the overflow bucket.
Corresponds to the JSON property overflowMean
3702 3703 3704 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3702 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
3707 3708 3709 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3707 def underflow_count @underflow_count end |
#underflow_mean ⇒ Float
Mean of values in the undeflow bucket.
Corresponds to the JSON property underflowMean
3712 3713 3714 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3712 def underflow_mean @underflow_mean end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3719 3720 3721 3722 3723 3724 |
# File 'lib/google/apis/dataflow_v1b3/classes.rb', line 3719 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 |